/* =========================================================
   FUN BEAT — DJ Website
   Premium · Orange & White · Luxuriös & einladend
   ========================================================= */

:root {
    --orange:        #FF6A00;
    --orange-deep:   #E85D00;
    --orange-soft:   #FF8A33;
    --orange-tint:   #FFF3EA;
    --orange-tint-2: #FFE7D4;

    --ink:           #181410;   /* warm near-black */
    --ink-soft:      #4a4540;
    --muted:         #8a827b;
    --line:          #efe9e3;

    --white:         #ffffff;
    --cream:         #fffaf5;

    --radius:        20px;
    --radius-sm:     12px;
    --shadow-sm:     0 4px 20px rgba(24, 20, 16, 0.06);
    --shadow-md:     0 18px 50px rgba(24, 20, 16, 0.10);
    --shadow-orange: 0 16px 40px rgba(255, 106, 0, 0.30);

    --maxw:          1180px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);

    --font-head:     'Playfair Display', Georgia, serif;
    --font-body:     'Poppins', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: min(100% - 2.5rem, var(--maxw));
    margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; color: var(--ink); }

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.4px; }
h3 { font-size: 1.32rem; font-weight: 600; }

.accent { color: var(--orange); font-style: italic; }

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 1rem 1.9rem;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-soft), var(--orange));
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(255, 106, 0, 0.42); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.btn-block { width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 0.7rem 0;
}

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

.logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.logo-mark { color: var(--orange); display: inline-grid; place-items: center; animation: spinSlow 8s linear infinite; }
.logo-text { letter-spacing: 0.5px; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color 0.25s; position: relative; }
.main-nav a:not(.nav-cta):hover { color: var(--orange); }
.main-nav a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--orange); transition: width 0.3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--orange); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
}
.mobile-menu a { padding: 0.7rem 0.4rem; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobile-menu a.nav-cta { color: #fff !important; text-align: center; border: none; margin-top: 0.6rem; }
.mobile-menu.open { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 0 3rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 70% 0%, var(--orange-tint) 0%, transparent 60%),
        var(--white);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.blob-1 { width: 460px; height: 460px; background: var(--orange-tint-2); top: -120px; right: -80px; animation: float 14s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: #ffd9bd; bottom: -100px; left: -60px; animation: float 18s ease-in-out infinite reverse; }
.blob-3 { width: 280px; height: 280px; background: var(--orange-tint); top: 40%; left: 45%; animation: float 16s ease-in-out infinite; }

.hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 2rem; }
.hero-lead strong { color: var(--orange); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.9rem; color: var(--ink); line-height: 1; }
.hero-stats span { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }

/* ----- Animated turntable ----- */
.hero-visual { position: relative; display: grid; place-items: center; }

.turntable {
    position: relative;
    width: min(78%, 380px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.sound-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0;
    animation: ripple 3s ease-out infinite;
}
.sound-ring.delay-1 { animation-delay: 1s; }
.sound-ring.delay-2 { animation-delay: 2s; }

.vinyl {
    width: 100%;
    filter: drop-shadow(0 30px 50px rgba(24,20,16,0.25));
    position: relative;
    z-index: 2;
}
.disc { transform-origin: 200px 200px; animation: spin 4s linear infinite; }

.tonearm {
    position: absolute;
    top: -6%;
    right: -4%;
    width: 46%;
    z-index: 3;
    filter: drop-shadow(0 8px 16px rgba(24,20,16,0.18));
}
.arm { transform-origin: 165px 35px; animation: armDrop 4s ease-in-out infinite; }

.equalizer {
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 46px;
    z-index: 4;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}
.equalizer span {
    width: 4px;
    background: linear-gradient(var(--orange-soft), var(--orange));
    border-radius: 4px;
    animation: eq 1.1s ease-in-out infinite;
}
.equalizer.small { position: static; transform: none; height: 30px; box-shadow: none; background: transparent; backdrop-filter: none; padding: 0; margin-top: 1.2rem; }
.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }
.equalizer span:nth-child(4) { animation-delay: 0.1s; }
.equalizer span:nth-child(5) { animation-delay: 0.5s; }
.equalizer span:nth-child(6) { animation-delay: 0.3s; }
.equalizer span:nth-child(7) { animation-delay: 0.15s; }
.equalizer span:nth-child(8) { animation-delay: 0.45s; }
.equalizer span:nth-child(9) { animation-delay: 0.25s; }
.equalizer span:nth-child(10){ animation-delay: 0.35s; }

/* scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--orange);
    border-radius: 100px;
    display: grid;
    justify-items: center;
    padding-top: 8px;
    z-index: 5;
}
.scroll-cue span { width: 4px; height: 8px; background: var(--orange); border-radius: 4px; animation: scrollDot 1.6s ease-in-out infinite; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
    background: var(--ink);
    color: #fff;
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track { display: inline-flex; align-items: center; gap: 2rem; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-size: 1.5rem; font-style: italic; }
.marquee-track span:nth-child(even) { color: var(--orange); }

/* =========================================================
   SERVICES
   ========================================================= */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange-soft), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured { background: linear-gradient(180deg, var(--cream), var(--white)); border-color: var(--orange-tint-2); }

.badge {
    position: absolute; top: 1.4rem; right: 1.4rem;
    background: var(--orange); color: #fff;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem; border-radius: 100px; text-transform: uppercase;
}

.service-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: grid; place-items: center;
    background: var(--orange-tint); color: var(--orange);
    margin-bottom: 1.4rem;
    transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.service-card:hover .service-icon { background: var(--orange); color: #fff; transform: rotate(-6deg) scale(1.05); }

.service-card h3 { margin-bottom: 0.7rem; }
.service-card > p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.3rem; }

.service-points { display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.service-points li { position: relative; padding-left: 1.5rem; font-size: 0.92rem; color: var(--ink-soft); }
.service-points li::before {
    content: '✦'; position: absolute; left: 0; color: var(--orange); font-size: 0.85rem; top: 1px;
}

.service-link { font-weight: 600; color: var(--orange); font-size: 0.95rem; transition: gap 0.3s, letter-spacing 0.3s; }
.service-link:hover { letter-spacing: 0.02em; }

/* =========================================================
   WHY
   ========================================================= */
.why { background: linear-gradient(180deg, var(--white), var(--cream)); }
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.why-list { display: grid; gap: 1.6rem; margin: 2.2rem 0 2.4rem; }
.why-item { display: flex; gap: 1.2rem; }
.why-num {
    flex: none;
    font-family: var(--font-head); font-weight: 700; font-style: italic;
    font-size: 1.3rem; color: var(--orange);
    width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--orange-tint);
}
.why-item h3 { margin-bottom: 0.25rem; }
.why-item p { color: var(--ink-soft); font-size: 0.95rem; }

.why-visual { position: relative; }
.why-card {
    position: relative;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.6rem 2.2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.why-card-glow {
    position: absolute; width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.4; top: -80px; right: -80px; filter: blur(20px);
    animation: float 12s ease-in-out infinite;
}
.why-quote { position: relative; font-family: var(--font-head); font-size: 1.5rem; line-height: 1.4; font-style: italic; }
.why-quote-name { position: relative; margin-top: 1.2rem; color: var(--orange-soft); font-weight: 500; }
.why-card .equalizer span { height: 100%; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--cream); }
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1rem;
}
.process-step { text-align: center; max-width: 320px; margin-inline: auto; }
.process-step-num {
    display: grid; place-items: center;
    width: 64px; height: 64px; margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-soft), var(--orange));
    color: #fff; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
    box-shadow: var(--shadow-orange);
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; }
.process-connector {
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
    margin-top: 32px;
    min-width: 40px;
    align-self: start;
    opacity: 0.5;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card blockquote { font-family: var(--font-head); font-size: 1.12rem; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 1.2rem; }
.testi-card figcaption { color: var(--muted); font-size: 0.9rem; font-weight: 500; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: linear-gradient(180deg, var(--white), var(--cream)); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 1rem; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: var(--orange-tint-2); box-shadow: var(--shadow-sm); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }

.faq-icon {
    flex: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--orange-tint);
    color: var(--orange);
    transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(135deg); background: var(--orange); color: #fff; }

.faq-answer { padding: 0 1.4rem 1.35rem; }
.faq-answer p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.faq-item[open] .faq-answer { animation: faqIn 0.35s var(--ease); }

.faq-cta { text-align: center; margin-top: 2rem; color: var(--ink-soft); }
.faq-cta a { color: var(--orange); font-weight: 600; }
.faq-cta a:hover { text-decoration: underline; }

@keyframes faqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: linear-gradient(180deg, var(--cream), var(--white)); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-info { display: grid; gap: 1.4rem; margin-top: 2.2rem; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
    flex: none; width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--orange-tint); color: var(--orange); font-size: 1.1rem;
}
.contact-info strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.contact-info a, .contact-info span { color: var(--ink); font-weight: 500; }
.contact-info a:hover { color: var(--orange); }

.btn-whatsapp {
    margin-top: 1.8rem;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.30);
}
.btn-whatsapp svg { flex: none; }
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 3vw, 2.6rem);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.form-field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--ink); }

input, select, textarea {
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    width: 100%;
}
input::placeholder, textarea::placeholder { color: #b5ada4; }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}
textarea { resize: vertical; min-height: 120px; }
input[type="date"] { color: var(--ink-soft); }

.checkbox-field { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; color: var(--ink-soft); cursor: pointer; margin-bottom: 0.4rem; }
.checkbox-field input { width: auto; margin-top: 0.2rem; accent-color: var(--orange); flex: none; }
.checkbox-field a { color: var(--orange); font-weight: 500; text-decoration: underline; }

.field-error { color: #d23b27; font-size: 0.78rem; min-height: 1rem; margin-top: 0.2rem; display: block; }

.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

.form-success {
    margin-top: 1.2rem;
    padding: 1.1rem 1.3rem;
    border-radius: var(--radius-sm);
    background: var(--orange-tint);
    border: 1px solid var(--orange-tint-2);
    display: flex; flex-direction: column; gap: 0.2rem;
    color: var(--ink);
}
.form-success strong { font-size: 1.05rem; }

.btn-block { margin-top: 0.6rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: #cfc7be; padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-mark { color: var(--orange); }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; line-height: 1.7; max-width: 24rem; }

.footer-nav { display: grid; gap: 0.7rem; align-content: start; }
.footer-nav a, .footer-contact a { font-size: 0.94rem; transition: color 0.25s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--orange); }

.footer-contact { display: grid; gap: 0.7rem; align-content: start; }
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin-top: 0.8rem;
    padding: 0.65rem 1.3rem;
    background: linear-gradient(135deg, var(--orange-soft), var(--orange));
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    box-shadow: 0 10px 26px rgba(255, 106, 0, 0.32);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.footer-whatsapp svg { flex: none; }
.footer-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 106, 0, 0.45); color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem; font-size: 0.84rem; color: #9b938a; }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a:hover { color: var(--orange); }

/* =========================================================
   FLOATING CTA (mobile)
   ========================================================= */
.floating-cta {
    position: fixed;
    bottom: 1.2rem; left: 50%; transform: translateX(-50%) translateY(120px);
    background: linear-gradient(135deg, var(--orange-soft), var(--orange));
    color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 0.9rem 1.8rem; border-radius: 100px;
    box-shadow: var(--shadow-orange);
    z-index: 90;
    transition: transform 0.4s var(--ease);
    display: none;
}
.floating-cta.show { transform: translateX(-50%) translateY(0); }

/* =========================================================
   DANKE-SEITE
   ========================================================= */
.thankyou {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 55% at 50% 0%, var(--orange-tint) 0%, transparent 60%), var(--white);
}
.thankyou-inner { position: relative; z-index: 1; max-width: 760px; }

.success-badge { position: relative; width: 120px; height: 120px; margin: 0 auto 1.8rem; display: grid; place-items: center; }
.success-badge svg { width: 120px; height: 120px; position: relative; z-index: 2; }
.sb-ripple {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--orange); opacity: 0;
    animation: ripple 2.4s ease-out infinite 0.9s;
}
.sb-ring {
    fill: none; stroke: var(--orange); stroke-width: 4;
    stroke-dasharray: 226; stroke-dashoffset: 226;
    animation: drawRing 0.7s var(--ease) forwards;
}
.sb-check {
    fill: none; stroke: var(--orange); stroke-width: 5;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 64; stroke-dashoffset: 64;
    animation: drawCheck 0.45s var(--ease) 0.6s forwards;
}

.thankyou h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.thankyou-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 38rem; margin: 0 auto 2rem; }
.thankyou-lead strong { color: var(--orange); font-weight: 600; }

.thankyou-hint {
    display: flex; align-items: flex-start; gap: 0.9rem; text-align: left;
    max-width: 34rem; margin: 0 auto 3rem;
    background: var(--cream); border: 1px solid var(--orange-tint-2);
    border-radius: var(--radius-sm); padding: 1rem 1.3rem;
    font-size: 0.92rem; color: var(--ink-soft);
}
.thankyou-hint .ci-icon { background: var(--orange-tint); font-size: 1.1rem; }
.thankyou-hint strong { color: var(--ink); }

.thankyou-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
    margin: 0 auto 3rem; text-align: center;
}
.ty-step {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.8rem 1.4rem;
}
.ty-step .process-step-num { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 0.9rem; }
.ty-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.ty-step p { font-size: 0.9rem; color: var(--ink-soft); }

.thankyou-direct { color: var(--ink-soft); margin-bottom: 1.1rem; }
.thankyou-contact { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-bottom: 2.4rem; }
.thankyou-back { font-weight: 600; color: var(--orange); font-size: 0.95rem; }
.thankyou-back:hover { text-decoration: underline; }

@keyframes drawRing { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

@media (max-width: 760px) {
    .thankyou-steps { grid-template-columns: 1fr; }
    .thankyou-contact .btn { width: 100%; }
}

/* =========================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ========================================================= */
.legal { padding: 9rem 0 5rem; background: radial-gradient(ellipse 70% 40% at 50% 0%, var(--orange-tint) 0%, transparent 55%), var(--white); }
.legal-head { text-align: center; margin-bottom: 3rem; }
.legal-head h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 2.4rem 0 0.7rem; }
.legal-content h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 1.6rem 0 0.4rem; }
.legal-content p { color: var(--ink-soft); margin-bottom: 0.85rem; font-size: 0.97rem; }
.legal-hint { font-size: 0.88rem; color: var(--muted); background: var(--orange-tint); border-radius: var(--radius-sm); padding: 0.8rem 1.1rem; }
.legal-content address { font-style: normal; color: var(--ink); line-height: 1.9; margin-bottom: 0.5rem; }
.legal-content address strong { font-family: var(--font-head); font-size: 1.15rem; }
.legal-content a { color: var(--orange); font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.9rem;
    margin-bottom: 1.5rem;
}
.legal-card h2 { margin-top: 0; }
.legal-note { font-size: 0.84rem; color: var(--muted); margin-top: 2.5rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

@keyframes armDrop {
    0%, 100% { transform: rotate(0deg); }
    15%, 85% { transform: rotate(18deg); }
}

@keyframes ripple {
    0%   { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(1.25); opacity: 0; }
}

@keyframes eq {
    0%, 100% { height: 20%; }
    50%      { height: 100%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(20px, -25px); }
    66%      { transform: translate(-15px, 15px); }
}

@keyframes marquee { to { transform: translateX(-50%); } }

@keyframes scrollDot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy h1 { margin-inline: auto; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 1rem; }
    .turntable { width: min(70%, 300px); }

    .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .why-visual { max-width: 480px; }

    .process-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .process-connector { display: none; }
}

/* Navigation: ab hier Hamburger-Menü (verhindert gedrängte Inline-Navi auf Tablets) */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
    .service-grid, .testi-grid { grid-template-columns: 1fr; }
    .floating-cta { display: block; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding-top: 6rem; }
    .scroll-cue { display: none; }
}

@media (max-width: 460px) {
    .hero-stats { gap: 1.4rem; }
    .hero-stats strong { font-size: 1.5rem; }
    .btn { width: 100%; }
    .hero-actions { flex-direction: column; }
}

/* =========================================================
   ACCESSIBILITY — reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
    .disc { animation: none; }
    .reveal { opacity: 1; transform: none; }
}
