@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root{
--ink:#eef2ff;
--muted:#b6bfdc;
--green:#6b6ee8;
--green-dark:#4447a8;
--sage:#2a2d63;
--sage-light:#1c1f49;
--cream:#151733;
--white:#101224;
--line:rgba(255,255,255,.10);
--shadow:0 24px 70px rgba(0,0,0,.35);
--radius:28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: #eef3f1;
    background: #121816;
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.7;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; text-align: center; }
.section { padding: 110px 0; }
.skip-link {
    position: fixed; left: 15px; top: -80px; z-index: 9999;
    padding: 12px 18px; background: var(--ink); color: white;
}
.skip-link:focus { top: 15px; }

.topbar { background: #263c34; color: white; font-size: 13px; }
.topbar-inner {
    min-height: 38px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
}
.topbar-contact { display: flex; gap: 24px; }
.topbar a:hover { opacity: .75; }

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(18,24,22,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(20,40,34,.06); }
.header-inner {
    min-height: 84px; display: flex; align-items: center;
    justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 50% 50% 50% 14px; background: var(--green);
    color: white; font-family: "Playfair Display", serif; font-size: 24px;
}
.brand strong, .brand small { display: block; line-height: 1.2; }
.brand strong { font-size: 16px; }
.brand small { margin-top: 5px; color: #a9b6b1; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-button) { position: relative; padding: 9px 0; }
.main-nav > a:not(.nav-button)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 3px;
    height: 2px; background: var(--green); transition: .2s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-button {
    padding: 12px 20px; border-radius: 999px;
    background: var(--green); color: white;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }

.hero {
    position: relative; overflow: hidden;
    min-height: 700px; display: flex; align-items: center;
    background: linear-gradient(135deg, #111815, #1d2925 58%, #263630);
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr;
    align-items: center; gap: 80px; padding-top: 70px; padding-bottom: 70px;
}
.hero-decoration { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-decoration-one { width: 340px; height: 340px; background: rgba(130,167,151,.16); top: -130px; left: -100px; }
.hero-decoration-two { width: 210px; height: 210px; border: 34px solid rgba(255,255,255,.5); right: 5%; bottom: -75px; }
.eyebrow {
    display: inline-block; margin-bottom: 18px; color: var(--green-dark);
    font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
h1, h2, blockquote {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600; line-height: 1.12; letter-spacing: -.025em;
}
h1 { margin: 0 0 26px; font-size: clamp(46px, 5.3vw, 76px); }
h2 { margin: 0 0 24px; font-size: clamp(34px, 4vw, 52px); }
h3 { line-height: 1.25; }
.hero-copy > p { max-width: 650px; margin: 0 0 34px; color: #a9b6b1; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 52px; padding: 14px 24px; border: 1px solid transparent;
    border-radius: 999px; cursor: pointer; font-weight: 700;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: #5f8377; box-shadow: 0 12px 30px rgba(67,100,89,.24); }
.button-primary:hover { background: #263c34; }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: #18211e; }
.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; color: var(--green-dark); font-size: 13px; font-weight: 600; }

.portrait-card { position: relative; max-width: 470px; margin-left: auto; }
.portrait-placeholder {
    aspect-ratio: 4/5; display: grid; place-items: center; text-align: center;
    padding: 30px; overflow: hidden; border-radius: 180px 180px 28px 28px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.9) 0 12%, transparent 12.5%),
        linear-gradient(145deg, #8ca79c, #ccd8d2);
    color: rgba(36,51,47,.58); font-weight: 700;
    box-shadow: var(--shadow);
}
.floating-note {
    position: absolute; left: -65px; bottom: 34px; max-width: 265px;
    padding: 20px 22px; border-radius: 18px; background: #18211e;
    box-shadow: var(--shadow);
}
.floating-note strong, .floating-note span { display: block; }
.floating-note strong { font-family: "Playfair Display", serif; font-size: 18px; }
.floating-note span { margin-top: 5px; color: #a9b6b1; font-size: 13px; }

.intro { background: #18211e; }
.lead { margin: 0; color: #a9b6b1; font-size: 20px; }

.services { background: #1b2723; }
.section-heading {
    display: flex; align-items: end; justify-content: space-between;
    gap: 50px; margin-bottom: 48px;
}
.section-heading h2 { max-width: 690px; margin-bottom: 0; }
.section-heading > p { max-width: 380px; margin: 0 0 8px; color: #a9b6b1; }
.section-heading.centered { display: block; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    position: relative; min-height: 330px; padding: 34px;
    border: 1px solid rgba(67,100,89,.1); border-radius: 24px;
    background: rgba(26,36,32,.86); overflow: hidden;
    transition: transform .25s, box-shadow .25s, background .25s;
}
.service-card:hover { transform: translateY(-7px); background: #18211e; box-shadow: var(--shadow); }
.service-number {
    position: absolute; right: 22px; top: 16px;
    color: rgba(53,85,76,.13); font-family: "Playfair Display", serif; font-size: 58px;
}
.service-icon {
    width: 54px; height: 54px; display: grid; place-items: center;
    border-radius: 18px; background: #31453e; color: var(--green-dark);
    font-size: 24px;
}
.service-card h3 { margin: 25px 0 12px; font-family: "Playfair Display", serif; font-size: 25px; }
.service-card p { color: #a9b6b1; }
.service-card a { position: absolute; left: 34px; bottom: 29px; color: var(--green-dark); font-weight: 700; }
.service-card a span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.service-card:hover a span { transform: translateX(5px); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-image { position: relative; }
.about-placeholder {
    aspect-ratio: 1/1.1; display: grid; place-items: center; text-align: center;
    padding: 30px; border-radius: 26px 160px 26px 26px;
    background: linear-gradient(145deg, #25322d, #3c4a44); color: #c2cec9; font-weight: 700;
}
.experience-badge {
    position: absolute; right: -34px; bottom: 40px; width: 150px; height: 150px;
    display: grid; place-content: center; text-align: center; border-radius: 50%;
    color: white; background: #263c34; box-shadow: var(--shadow);
}
.experience-badge strong, .experience-badge span { display: block; }
.experience-badge strong { font-family: "Playfair Display", serif; font-size: 22px; }
.experience-badge span { font-size: 12px; }
.about-copy p { color: #a9b6b1; }
.check-list { padding: 0; margin: 28px 0; list-style: none; }
.check-list li { position: relative; padding: 7px 0 7px 30px; font-weight: 600; }
.check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 7px; color: var(--green);
}
.text-link { color: var(--green-dark); font-weight: 700; }

.process { background: #171f1c; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
.process-step { position: relative; padding: 36px 34px; border-top: 1px solid var(--line); }
.process-step > span {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 50%; background: var(--green); color: white; font-weight: 700;
}
.process-step h3 { font-family: "Playfair Display", serif; font-size: 25px; }
.process-step p { color: #a9b6b1; }

.pricing { background: #263c34; color: white; }
.pricing-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.pricing .eyebrow { color: #c8ded5; }
.pricing-copy p { max-width: 620px; color: rgba(255,255,255,.72); }
.small-note { font-size: 13px; }
.price-card {
    padding: 42px; border-radius: 28px; color: #eef3f1; background: #18211e;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}
.price-label { color: var(--green-dark); font-weight: 700; }
.price { display: flex; align-items: end; gap: 10px; margin: 16px 0 24px; }
.price strong { font-family: "Playfair Display", serif; font-size: 52px; line-height: 1; }
.price span { color: #a9b6b1; }
.price-card ul { padding: 0; margin: 0 0 30px; list-style: none; }
.price-card li { padding: 9px 0; border-bottom: 1px solid var(--line); }

.quote-section {
    padding: 100px 0; text-align: center;
    background: linear-gradient(rgba(27,39,35,.92), rgba(27,39,35,.92)),
                radial-gradient(circle at 20% 30%, #41574f, transparent 34%);
}
blockquote { max-width: 930px; margin: 0 auto 18px; font-size: clamp(34px, 5vw, 56px); }
.quote-section span { color: #a9b6b1; }

.contact { background: #18211e; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.contact-copy > p { color: #a9b6b1; }
.contact-items { display: grid; gap: 15px; margin-top: 35px; }
.contact-items a, .contact-items > div { display: flex; align-items: center; gap: 15px; }
.contact-symbol {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 14px; background: #1b2723; color: var(--green-dark);
}
.contact-items small, .contact-items strong { display: block; }
.contact-items small { color: #a9b6b1; }
.contact-form { padding: 36px; border-radius: 28px; background: #1b2723; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; font-size: 13px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form textarea {
    width: 100%; margin-top: 7px; padding: 14px 16px; border: 1px solid var(--line);
    border-radius: 12px; outline: none; background: #18211e; color: #eef3f1;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(85,119,109,.1); }
.privacy-check { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; color: #a9b6b1; }
.privacy-check input { margin-top: 5px; }
.form-message { margin-bottom: 18px; padding: 13px 16px; border-radius: 12px; }
.form-message.success { background: #dcefe2; color: #235d39; }
.form-message.error { background: #f8dddd; color: #7a2929; }

.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.72); background: #0d1210; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; }
.footer-grid h3 { margin-top: 0; color: white; font-size: 15px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-grid p { max-width: 330px; }
.footer-brand strong { color: white; }
.footer-brand small { color: rgba(255,255,255,.5); }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 20px;
    margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
}
.back-to-top {
    position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px;
    border: 0; border-radius: 50%; color: white; background: #5f8377;
    box-shadow: 0 12px 28px rgba(0,0,0,.16); cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal-page { min-height: 70vh; padding: 80px 0; }
.legal-page .content { max-width: 850px; }
.legal-page h1 { font-size: 52px; }
.legal-page h2 { margin-top: 40px; font-size: 28px; }
.legal-page p, .legal-page li { color: #a9b6b1; }

@media (max-width: 980px) {
    .topbar { display: none; }
    .menu-toggle { display: block; z-index: 1001; }
    .main-nav {
        position: fixed; inset: 0; display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 22px;
        background: rgba(250,247,240,.98); visibility: hidden; opacity: 0;
        transform: translateY(-10px); transition: .25s;
    }
    .main-nav.open { visibility: visible; opacity: 1; transform: none; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero-grid, .about-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-left: auto; margin-right: auto; }
    .hero-actions, .trust-row { justify-content: center; }
    .portrait-card { margin: 0 auto; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 20px; }
    .about-image { max-width: 600px; margin: auto; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 26px, 1180px); }
    .section { padding: 78px 0; }
    .brand small { display: none; }
    .header-inner { min-height: 70px; }
    .hero { min-height: auto; }
    .hero-grid { padding-top: 55px; padding-bottom: 70px; }
    h1 { font-size: 43px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .portrait-card { max-width: 360px; }
    .floating-note { left: 10px; right: 10px; bottom: 18px; max-width: none; }
    .service-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
    .service-card { min-height: 300px; }
    .experience-badge { right: 10px; bottom: 20px; width: 125px; height: 125px; }
    .price-card, .contact-form { padding: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { display: block; }
    .footer-bottom span { margin: 6px 0; }
}


/* Dunkles Erscheinungsbild */
body {
    background: #121816;
    color: #eef3f1;
}

.site-header.scrolled {
    background: rgba(18, 24, 22, .96);
}

.main-nav,
.main-nav a,
.brand strong,
h1, h2, h3,
blockquote {
    color: #eef3f1;
}

.brand small,
.hero-copy > p,
.section-heading > p,
.about-copy p,
.process-step p,
.contact-copy > p,
.price span,
.quote-section span,
.footer-grid p,
.legal-page p,
.legal-page li {
    color: #a9b6b1;
}

.hero {
    background:
        radial-gradient(circle at 78% 28%, rgba(92, 126, 114, .20), transparent 32%),
        linear-gradient(135deg, #101613, #1a2521 55%, #24342e);
}

.hero-decoration-one {
    background: rgba(105, 142, 129, .12);
}

.hero-decoration-two {
    border-color: rgba(255,255,255,.06);
}

.button-secondary {
    color: #eef3f1;
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

.button-secondary:hover {
    background: rgba(255,255,255,.08);
}

.portrait-placeholder {
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.08) 0 12%, transparent 12.5%),
        linear-gradient(145deg, #40554d, #1f2b27);
    color: #c3d0cb;
}

.floating-note,
.service-card,
.price-card,
.contact-form {
    background: #1a2420;
    color: #eef3f1;
    border: 1px solid rgba(255,255,255,.08);
}

.service-card:hover {
    background: #202d28;
}

.price-card li {
    border-color: rgba(255,255,255,.08);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    background: #101714;
    color: #eef3f1;
    border-color: rgba(255,255,255,.10);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7f8f89;
}

.topbar {
    background: #0c120f;
}

.pricing {
    background: linear-gradient(135deg, #1d2b26, #263b33);
}

.quote-section {
    background:
        linear-gradient(rgba(24,35,31,.94), rgba(24,35,31,.94)),
        radial-gradient(circle at 20% 30%, #41574f, transparent 34%);
}

.site-footer {
    background: #0a0f0d;
}

@media (max-width: 980px) {
    .main-nav {
        background: rgba(15, 22, 19, .98);
    }
}

.hero{background:linear-gradient(135deg,#11142d,#1b1f49 55%,#373b83);}
.services{background:#171936;}
.process{background:#13152b;}
.quote-section{background:linear-gradient(rgba(25,27,59,.95),rgba(25,27,59,.95));}
.button-primary,.nav-button,.back-to-top{background:#6b6ee8!important;}
.button-primary:hover{background:#5559d6!important;}
.service-card,.price-card,.contact-form,.floating-note{border-top:3px solid #7d80ff;}
.hero-decoration-one{background:rgba(123,126,255,.14);}
.hero-decoration-two{border-color:rgba(124,127,255,.15);}



@media(max-width:900px){.youtube-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:650px){.youtube-grid{grid-template-columns:1fr;}}


/* YouTube-Bereich */
.youtube-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 90% 12%, rgba(119, 104, 255, .12), transparent 28%),
        linear-gradient(180deg, #151733, #12142a);
}

.video-heading {
    align-items: flex-end;
    margin-bottom: 52px;
}

.video-heading > div {
    max-width: 720px;
}

.video-heading > p {
    max-width: 390px;
    text-align: left;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
}

.video-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-top: 3px solid #7d80ff;
    border-radius: 24px;
    background: linear-gradient(180deg, #20244c, #191d3d);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.video-card:hover {
    transform: translateY(-7px);
    border-color: rgba(132,135,255,.42);
    box-shadow: 0 28px 65px rgba(0,0,0,.34);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0c0e20;
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(17,19,45,.18), transparent 45%);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 26px 28px;
    text-align: left;
}

.video-category {
    margin-bottom: 12px;
    color: #9da1ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.video-card h3 {
    width: 100%;
    min-height: 62px;
    margin: 0 0 13px;
    color: #f4f5ff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    line-height: 1.22;
    text-align: left;
}

.video-card p {
    flex: 1;
    width: 100%;
    margin: 0 0 24px;
    color: #b9c0e2;
    line-height: 1.65;
    text-align: left;
}

.video-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #aeb1ff;
    font-weight: 700;
}

.video-card a span {
    transition: transform .2s ease;
}

.video-card:hover a span {
    transform: translateX(5px);
}

@media (max-width: 980px) {
    .youtube-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-heading {
        display: block;
    }

    .video-heading > p {
        margin-top: 20px;
    }
}

@media (max-width: 650px) {
    .youtube-section {
        padding: 78px 0;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .video-card h3 {
        min-height: 0;
    }

    .video-content {
        padding: 22px;
    }
}
