/* =============================================================
   Wingsecurity — Modern Homepage
   ============================================================= */

:root {
    --bg:            #0b0f14;
    --bg-alt:        #0f151d;
    --surface:       #141b24;
    --surface-2:     #1a2330;
    --border:        rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text:          #e8eef5;
    --text-muted:    #94a3b8;
    --text-dim:      #64748b;
    --accent:        #f5b301;   /* warmer gold */
    --accent-2:      #38bdf8;   /* cyan */
    --accent-grad:   linear-gradient(135deg, #f5b301 0%, #ff8a3d 100%);
    --danger:        #ef4444;
    --success:       #22c55e;

    --radius:        14px;
    --radius-lg:     22px;
    --shadow-lg:     0 30px 60px -30px rgba(0,0,0,.6), 0 0 0 1px var(--border);
    --shadow-glow:   0 0 60px rgba(245,179,1,.25);

    --container:     1200px;
    --ease:          cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.2; letter-spacing: -0.02em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: currentColor;
    display: inline-block;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    max-width: 720px;
    margin-bottom: 1rem;
}
.section__lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
}
.section__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ============== NAVIGATION ============== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all .3s var(--ease);
    background: rgba(11, 15, 20, 0.65);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    padding: .65rem 0;
    background: rgba(11, 15, 20, 0.88);
    border-bottom-color: var(--border);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.nav__logo {
    display: inline-flex; align-items: center; gap: .65rem;
    font-weight: 700;
    color: var(--text);
}
.nav__logo-mark { width: 36px; height: 36px; color: var(--accent); flex-shrink: 0; filter: drop-shadow(0 4px 14px rgba(245,179,1,.35)); transition: transform .4s var(--ease); }
.nav__logo:hover .nav__logo-mark { transform: rotate(-8deg) scale(1.08); }
.nav__logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; letter-spacing: -.02em; }
.nav__logo-text span { color: var(--accent); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
    padding: .6rem 1rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all .2s var(--ease);
}
.nav__links a:hover { color: var(--text); background: var(--surface); }
.nav__links a.nav__cta {
    background: var(--accent);
    color: #0b0f14;
    font-weight: 600;
    margin-left: .5rem;
}
.nav__links a.nav__cta:hover { background: #ffc634; transform: translateY(-1px); }

.nav__toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__toggle span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem 1.6rem;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
    background: var(--accent-grad);
    color: #0b0f14;
    box-shadow: 0 10px 30px -10px rgba(245, 179, 1, .5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px -10px rgba(245, 179, 1, .6); }
.btn--ghost {
    border: 1px solid var(--border-strong);
    color: var(--text);
    background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--block { width: 100%; }

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.35) brightness(.55) contrast(1.05);
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.02); }
    to   { transform: scale(1.12); }
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11,15,20,.55) 0%, rgba(11,15,20,.75) 50%, var(--bg) 100%),
        linear-gradient(90deg, rgba(11,15,20,.9) 0%, rgba(11,15,20,.3) 60%, transparent 100%);
}
.hero__watermark {
    position: absolute;
    right: -60px; bottom: -60px;
    width: 460px; height: 460px;
    opacity: .06;
    filter: grayscale(1) brightness(3);
    pointer-events: none;
}
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 40%, transparent 80%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .5;
    animation: float 18s ease-in-out infinite;
}
.hero__glow--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,179,1,.25), transparent 70%);
    top: -200px; right: -150px;
}
.hero__glow--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56,189,248,.18), transparent 70%);
    bottom: -200px; left: -100px;
    animation-delay: -9s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(40px, -30px); }
}

.hero__inner { width: 100%; }
.hero__content { max-width: 820px; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.tag__dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34,197,94,.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
    50%      { box-shadow: 0 0 0 8px rgba(34,197,94,.05); }
}

.hero__title {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}
.hero__lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(2rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    width: fit-content;
}
.hero__stats dt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.hero__stats dd { font-size: .85rem; color: var(--text-muted); margin-top: .4rem; }

.hero__scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid var(--border-strong);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.hero__scroll span {
    width: 3px; height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============== SECTION BASE ============== */
.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}
.section--alt { background: var(--bg-alt); }

/* ============== SERVICES ============== */
.services { display: flex; flex-direction: column; gap: 4rem; }

.service-group__title {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.service-group__title::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.service-group__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .35s var(--ease);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,179,1,.08), transparent 60%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,179,1,.35);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, rgba(245,179,1,.15), rgba(245,179,1,.05));
    border: 1px solid rgba(245,179,1,.25);
    border-radius: 14px;
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--text);
}
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.25rem; }

.service-card ul { display: flex; flex-direction: column; gap: .55rem; }
.service-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .9rem;
    color: var(--text-muted);
}
.service-card li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 14px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* ============== GALERIE (Sicherheitsausrüstung) ============== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    cursor: pointer;
    isolation: isolate;
    background: var(--surface-2);
}
.gallery__item--lg  { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.9) 100%);
    z-index: 1;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem;
    z-index: 2;
    color: #fff;
    transform: translateY(calc(100% - 78px));
    transition: transform .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }

.gallery__tag {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--accent);
    color: #0b0f14;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: .75rem;
}
.gallery__item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .4rem;
}
.gallery__item p {
    font-size: .9rem;
    color: rgba(255,255,255,.82);
    max-width: 360px;
}

/* ============== TEAM ============== */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.team__card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .35s var(--ease);
}
.team__card:hover {
    transform: translateY(-4px);
    border-color: rgba(245,179,1,.35);
    box-shadow: var(--shadow-lg);
}
.team__avatar {
    width: 110px; height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    border: 2px solid var(--accent);
    position: relative;
    display: grid; place-items: center;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.team__avatar::before { content: attr(data-initials); }
.team__card h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.team__card p { color: var(--text-muted); font-size: .9rem; }
.team__email { margin-top: .5rem; font-size: .85rem; word-break: break-all; }
.team__email a { color: var(--accent); text-decoration: none; }
.team__email a:hover { text-decoration: underline; }

/* ============== SERVICE-PAKET ============== */
.service-pkg {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.service-pkg__intro p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-top: 1rem;
}
.service-pkg__list { display: flex; flex-direction: column; gap: 1rem; }

.pkg-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.pkg-item:hover {
    border-color: rgba(245,179,1,.35);
    transform: translateX(6px);
}
.pkg-item__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 50px;
}
.pkg-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.pkg-item p  { color: var(--text-muted); font-size: .95rem; }

/* ============== MISSION ============== */
.mission {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.mission__lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.mission__quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.5;
    font-style: italic;
    color: var(--text);
    padding: 1.5rem 0 1.5rem 1.75rem;
    border-left: 3px solid var(--accent);
}
.mission__right { display: flex; flex-direction: column; gap: 1rem; }

.value {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease);
}
.value::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent-grad);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s var(--ease);
}
.value:hover { transform: translateY(-2px); }
.value:hover::before { transform: scaleY(1); }
.value h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--accent); }
.value p  { color: var(--text-muted); font-size: .95rem; }

/* ============== KONTAKT ============== */
.section--contact {
    background:
        radial-gradient(circle at 80% 20%, rgba(245,179,1,.08), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(56,189,248,.06), transparent 50%),
        var(--bg-alt);
}
.contact {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.contact__lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

.contact__details { display: flex; flex-direction: column; gap: 1.25rem; font-style: normal; }
.contact__details-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .25s var(--ease);
}
.contact__details-item:hover { border-color: rgba(245,179,1,.3); }
.contact__details svg {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact__details a { color: var(--text); font-weight: 500; }
.contact__details a:hover { color: var(--accent); }
.contact__details strong { display: block; margin-bottom: .25rem; }

.contact__form {
    padding: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.field__optional {
    font-size: .72rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: .02em;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 540px) {
    .field-row { grid-template-columns: 1fr; }
}
.field input,
.field textarea {
    padding: .85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font: inherit;
    transition: all .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,179,1,.15);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) { border-color: rgba(239,68,68,.5); }

.checkbox {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .85rem;
    color: var(--text-muted);
    cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--accent); }
.checkbox a { color: var(--accent); text-decoration: underline; }

.form__status { font-size: .9rem; text-align: center; min-height: 1.2em; }
.form__status.is-success { color: var(--success); }
.form__status.is-error   { color: var(--danger); }

/* ============== FOOTER ============== */
.footer {
    background: #070a0f;
    border-top: 1px solid var(--border);
    padding: 4rem 0 1.5rem;
    color: var(--text-muted);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer__brand { position: relative; overflow: hidden; }
.footer__brand p { margin-top: 1rem; font-size: .9rem; max-width: 260px; position: relative; z-index: 1; }
.footer__tagline { font-size: .82rem !important; color: var(--text-dim); line-height: 1.6; }
.footer__logo img { width: 40px; height: 40px; filter: drop-shadow(0 4px 14px rgba(245,179,1,.4)); }
.footer__watermark {
    position: absolute;
    top: 50%; right: 0;
    width: 160px; height: 160px;
    transform: translateY(-50%);
    opacity: .05;
    pointer-events: none;
}
.footer__col h4 {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text);
    margin-bottom: 1rem;
}
.footer__col p, .footer__col a { font-size: .9rem; }
.footer__col a:hover { color: var(--accent); }
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
}
.footer__bottom a:hover { color: var(--accent); }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
    .service-pkg,
    .mission,
    .contact {
        grid-template-columns: 1fr;
    }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .gallery__item--lg,
    .gallery__item--wide { grid-column: span 2; }
}

/* Mobile navigation */
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0; right: 0;
        width: min(340px, 85vw);
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        gap: .5rem;
        padding: 6rem 1.5rem 2rem;
        background: var(--bg-alt);
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,.5);
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__links a {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    .nav__links a.nav__cta { margin-left: 0; margin-top: 1rem; text-align: center; }
    body.menu-open { overflow: hidden; }

    .hero { min-height: auto; padding: 7rem 0 4rem; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; width: 100%; }
    .hero__stats dt { font-size: 1.5rem; }
    .hero__scroll { display: none; }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .gallery__item--lg,
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item figcaption { transform: translateY(0); }

    .contact__form { padding: 1.75rem; }

    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .pkg-item { grid-template-columns: 1fr; gap: .75rem; }
}

/* Small phones */
@media (max-width: 420px) {
    .btn { padding: .85rem 1.3rem; font-size: .9rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .service-card { padding: 1.5rem; }
}

/* ============================================================
   HONEYPOT (unsichtbar, nur für Bots)
   ============================================================ */
.field--honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    opacity: 0; pointer-events: none;
}

/* ============================================================
   LEGAL / DATENSCHUTZ-SEITE
   ============================================================ */
.page-legal { background: var(--bg); }

.legal-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background:
        radial-gradient(circle at 80% 30%, rgba(245,179,1,.08), transparent 60%),
        radial-gradient(circle at 15% 80%, rgba(56,189,248,.06), transparent 60%),
        var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.legal-hero .section__title { font-size: clamp(2rem, 5vw, 3rem); }
.legal-hero .section__lead { margin-top: 1rem; max-width: 680px; }
.legal-back {
    display: inline-flex;
    align-items: center; gap: .5rem;
    padding: .5rem .95rem;
    margin-bottom: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 500;
    transition: all .25s var(--ease);
}
.legal-back svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.legal-back:hover {
    color: var(--accent);
    border-color: rgba(245,179,1,.4);
}
.legal-back:hover svg { transform: translateX(-3px); }
.legal-meta {
    margin-top: 1.5rem;
    font-size: .8rem;
    color: var(--text-dim);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal { padding-top: clamp(3rem, 6vw, 5rem); }
.legal__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.legal__toc {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.legal__toc h2 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.legal__toc ol {
    list-style: none;
    counter-reset: toc;
    display: flex; flex-direction: column; gap: .4rem;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a {
    display: block;
    padding: .5rem .6rem;
    font-size: .88rem;
    color: var(--text-muted);
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all .2s var(--ease);
}
.legal__toc a:hover {
    color: var(--text);
    background: var(--surface-2);
    border-left-color: var(--accent);
}

.legal__body > section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}
.legal__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}
.legal__body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}
.legal__body ul {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding-left: 0;
    display: flex; flex-direction: column; gap: .5rem;
}
.legal__body li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.legal__body li::before {
    content: '';
    position: absolute;
    left: 0; top: .7em;
    width: 10px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.legal__body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal__body a:hover { color: #ffc634; }
.legal__body strong { color: var(--text); }
.legal__card {
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    margin: 1rem 0 1.5rem;
    line-height: 1.8;
}
.legal__highlight {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(245,179,1,.08), rgba(245,179,1,.02));
    border: 1px solid rgba(245,179,1,.25);
    border-radius: var(--radius);
    margin: 1rem 0 1.5rem;
    color: var(--text) !important;
}

@media (max-width: 900px) {
    .legal__inner { grid-template-columns: 1fr; }
    .legal__toc {
        position: static;
        padding: 1.25rem;
    }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    display: grid;
    gap: .9rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: rgba(245,179,1,.35); }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}
.faq__item p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

