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

:root {
    --bg: #050811;
    --bg-soft: #0a1120;
    --surface: rgba(10, 16, 28, 0.84);
    --surface-strong: rgba(10, 16, 28, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --text-soft: #cbd5e1;
    --text-muted: #94a3b8;
    --primary: #1ea7ff;
    --primary-strong: #2563eb;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(125, 211, 252, 0.24);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

/* =========================
   BASE
========================= */
html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(180deg, #050811 0%, #03060d 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 860px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(14, 165, 233, 0.08);
    color: #7dd3fc;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2,
.intro h2,
.cta-text h2,
.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-head p,
.intro p,
.cta-text p,
.contact p {
    color: var(--text-soft);
    font-size: 1.03rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: all 0.22s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    box-shadow: 0 12px 30px rgba(24, 169, 255, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(24, 169, 255, 0.28);
}

.btn-secondary,
.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--border-strong);
    background: rgba(24, 169, 255, 0.08);
}

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

.hero.hero-salzburg {
    background: url("https://www.flydata.eu/images/banner-pas.jpg") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 6, 14, 0.08) 0%,
        rgba(2, 6, 14, 0.20) 100%
    );
    z-index: 1;
}

.hero-logo-top {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 320px;   /* HIER wird es groß */
    height: auto;
    z-index: 5;
    max-width: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #7dd3fc;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    margin-bottom: 18px;
    text-align: center;
    max-width: 900px;
}

.hero-subline {
    max-width: 760px;
    font-size: 1.05rem;
    color: #dbe7f3;
    margin: 0 auto 28px;
    line-height: 1.7;
    text-align: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 220px;
}

/* =========================
   TRUST
========================= */
.trust {
    position: relative;
    z-index: 3;
    margin-top: -34px;
    padding-bottom: 18px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-item {
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(11, 18, 32, 0.94);
    box-shadow: var(--shadow);
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: #7dd3fc;
    margin-bottom: 6px;
}

.trust-item span {
    color: #ffffff;
    font-size: 1rem;
}

/* =========================
   INTRO
========================= */
.intro {
    padding: 78px 0 42px;
    text-align: center;
}

.intro h2 {
    margin-bottom: 18px;
}

.intro p {
    line-height: 1.8;
}

.intro-lead {
    margin-bottom: 16px;
}

/* =========================
   SERVICES
========================= */
.services {
    padding: 54px 0 96px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-box {
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #0c1322 0%, #0a1020 100%);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-box:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.service-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 18px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.14);
    color: #ffffff;
    font-weight: 800;
}

.service-box h3 {
    font-size: 1.18rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-box p {
    color: var(--text-soft);
}

/* =========================
   BENEFITS
========================= */
.benefits {
    padding: 96px 0;
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.98), rgba(4, 7, 14, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-box {
    padding: 26px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.benefit-box:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.benefit-box h3 {
    font-size: 1.12rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefit-box p {
    color: var(--text-soft);
}

/* =========================
   CTA
========================= */
.cta {
    padding: 88px 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.09), rgba(15, 23, 39, 0.96));
    box-shadow: var(--shadow);
}

.cta-text {
    max-width: 760px;
}

/* =========================
   CONTACT
========================= */
.contact {
    padding: 0 0 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-info {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(12, 19, 34, 0.96) 0%, rgba(10, 16, 28, 0.94) 100%);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.contact-data {
    display: grid;
    gap: 12px;
}

.contact-data-row {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-data-row span {
    display: block;
    font-size: 0.82rem;
    color: #7dd3fc;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-data-row strong {
    color: #ffffff;
    font-size: 0.98rem;
}

.contact-form-outer {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.10), rgba(15, 23, 39, 0.94));
    border: 1px solid rgba(125, 211, 252, 0.14);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-form-inner {
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.98) 0%, rgba(10, 16, 28, 0.96) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 10px 30px rgba(0,0,0,0.35);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: #ffffff;
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(125, 211, 252, 0.28);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.form-btn {
    width: 100%;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    text-align: center;
    padding: 24px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(1, 3, 8, 0.92);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer p,
.footer-links a {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a:hover {
    color: #fff;
}

/* =========================
   FLOATING CTA
========================= */
.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(24, 169, 255, 0.28);
    transition: all 0.22s ease;
}

.floating-cta:hover {
    transform: translateY(-2px);
}

/* =========================
   SIDE TABS
========================= */
.side-tabs {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-button {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 16, 28, 0.88);
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-right: none;
    border-radius: 14px 0 0 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.tab-button svg {
    width: 20px;
    height: 20px;
    color: #7dd3fc;
    transition: all 0.25s ease;
}

.tab-button:hover {
    transform: translateX(-6px);
    background: rgba(14, 165, 233, 0.14);
    border-color: rgba(125, 211, 252, 0.30);
}

.tab-button:hover svg {
    color: #ffffff;
}

/* =========================
   GLASS 3D EFFECT
========================= */
.glass {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.01)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);

    border-radius: 22px;

    position: relative;
    overflow: hidden;
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}

.glass:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
    .service-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: 20px 0;
    }

    .hero-logo-top {
        top: 16px;
        left: 16px;
        width: 60px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .service-grid,
    .trust-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-box,
    .benefit-box,
    .contact-info,
    .contact-form-inner,
    .cta-box,
    .trust-item {
        padding: 22px;
    }

    .side-tabs {
        top: auto;
        bottom: 18px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }

    .tab-button {
        border-right: 1px solid rgba(125, 211, 252, 0.16);
        border-radius: 14px;
    }
}

@media (max-width: 540px) {
    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .hero {
        min-height: 100svh;
    }

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

    .hero-center {
        width: min(900px, calc(100% - 24px));
    }

    .floating-cta {
        right: 12px;
        bottom: 12px;
        min-height: 48px;
        padding: 0 18px;
        font-size: 0.94rem;
    }
}

/* =========================
   ICON
========================= */

.logo-marquee-section {
    position: relative;
    width: 100%;
    padding: 26px 0;
    background: #f3f3f3;
    overflow: hidden;
    margin-top: 60px; /* Abstand nach oben */
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: marqueeLeft 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.logo-item img {
    display: block;
    max-height: 46px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Endlos von rechts nach links */
@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* optional: Pause bei Hover */
.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

/* Tablet */
@media (max-width: 900px) {
    .logo-marquee-track {
        gap: 50px;
        animation-duration: 22s;
    }

    .logo-item {
        min-width: 120px;
    }

    .logo-item img {
        max-height: 38px;
        max-width: 120px;
    }
}

/* Handy */
@media (max-width: 600px) {
    .logo-marquee-section {
        padding: 20px 0;
    }

    .logo-marquee-track {
        gap: 36px;
        animation-duration: 18s;
    }

    .logo-item {
        min-width: 95px;
    }

    .logo-item img {
        max-height: 30px;
        max-width: 95px;
    }
}

/* BUTTON */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #050811, #0a1120);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}


.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ea7ff, #2563eb);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30,167,255,0.3);
}