* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    background: #0b0c10;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: rgb(255, 215, 0); /* Gold-Hover */
}

/* Header */

.dl-header {
    position: sticky;
    top: 0;
    z-index: 10;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 12px 32px;
    background: rgba(5, 5, 10, 0.92);
    border-bottom: 1px solid rgba(255, 215, 0, 0.20);
    backdrop-filter: blur(10px);

    box-shadow:
        0 1px 8px rgba(255, 215, 0, 0.10),
        0 1px 0 rgba(255, 215, 0, 0.35);
}

.dl-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    grid-column: 2;
}

.dl-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.35));
}

.dl-logo-text {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(255, 215, 0);
    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.28),
        0 0 8px rgba(255, 215, 0, 0.15);
    position: relative;
}

.dl-logo-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0.0),
        rgba(255, 215, 0, 0.40),
        rgba(255, 215, 0, 0.0)
    );
    border-radius: 2px;
}

.dl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    grid-column: 3;
    color: #e0e0e0;
    font-weight: 400;
    transition: color 0.2s ease;
}

.dl-nav a:hover {
    color: rgb(255, 215, 0);
}

/* Anchor offset fix */
#about,
#how {
    scroll-margin-top: 120px; /* Header + etwas Luft */
}


/* Globale primäre Buttons */

.dl-hero-button,
.dl-cta-button,
.dl-final-button {
    background: #46e3a3;
    color: #07120e;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.dl-hero-button:hover,
.dl-cta-button:hover,
.dl-final-button:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

/* Hero */

.dl-hero {
    position: relative;
    min-height: 70vh;
    padding: 80px 16px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050509;
    border-bottom: 2px solid rgba(255, 215, 0, 0.20);
}

.dl-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 5, 10, 0.05), rgba(5, 5, 10, 0.15)),
        url("hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.dl-hero-inner {
    position: relative;
    max-width: 760px;
    text-align: left;
    z-index: 1;
    background: radial-gradient(circle at top left, rgba(5, 5, 10, 0.88), rgba(5, 5, 10, 0.95));
    padding: 32px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    margin-left: auto;
    margin-right: 36px;
}

.dl-hero-tagline {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a7f5cf;
    margin: 0 0 10px;
}

.dl-hero h1 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 16px;
}

.dl-hero-text {
    font-size: 15px;
    color: #d8d8d8;
    margin: 0 0 22px;
}

.dl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.dl-hero-button,
.dl-hero-button-ghost {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Ghost-Button bleibt neutral */

.dl-hero-button-ghost {
    background: transparent;
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.25);
}

.dl-hero-button-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dl-hero-note {
    margin: 0;
    font-size: 13px;
    color: #a7a7a7;
}

/* Sections – Basislayout */

.dl-section {
    padding: 40px 16px;
    max-width: 960px;
    margin: 0 auto;
}

.dl-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #46e3a3; /* Türkis */
}

.dl-section p {
    font-size: 15px;
    color: #dddddd;
}

/* About */

.dl-about {
    padding-top: 32px;
}

.dl-about-card {
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(8, 10, 18, 0.9), rgba(5, 5, 10, 0.96));
    padding: 24px 22px;
    border: 1px solid rgba(255, 215, 0, 0.10);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.dl-about-main h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.dl-about-intro {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 18px;
}

.dl-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.dl-about-block h3,
.dl-about-footer h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #46e3a3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dl-about-block p {
    font-size: 14px;
    color: #dcdcdc;
}

.dl-about-footer p {
    font-size: 13px;
    color: #b9b9b9;
}

/* Atmospheric Image Section – etwas offener, weniger "Box" */

/* Embedded atmospheric background block */

.dl-atmos-bg {
    width: 100%;
    height: 380px;                      /* Höhe anpassbar */
    margin: 40px 0;

    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url("dropleaf.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    border-radius: 18px;
    border: 1px solid rgba(255,215,0,0.12);
    box-shadow: 0 16px 38px rgba(0,0,0,0.55);
}

/* Mobile */
@media (max-width: 700px) {
    .dl-atmos-bg {
        height: 260px;
        border-radius: 12px;
    }
}


/* CTA Section – etwas "offener" */

.dl-cta-card {
    text-align: center;
    padding: 32px 24px 34px;
    border-radius: 18px;
    background: radial-gradient(circle at center, rgba(10, 12, 20, 0.88), rgba(5, 5, 10, 0.96));
    border: 1px solid rgba(255, 215, 0, 0.10);
}

.dl-cta-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(70, 227, 163, 0.0),
        rgba(70, 227, 163, 0.8),
        rgba(70, 227, 163, 0.0)
    );
    margin: 0 auto 20px auto;
}

.dl-cta h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.dl-cta-text {
    font-size: 15px;
    color: #dcdcdc;
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.dl-cta-button {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
}

.dl-cta-note {
    margin-top: 18px;
    font-size: 13px;
    color: #a7a7a7;
}

/* GET Section */

.dl-get-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 24px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(10, 12, 20, 0.9), rgba(5, 5, 10, 0.96));
    border: 1px solid rgba(255, 215, 0, 0.08);

}

.dl-get-card h2 {
    text-align: center;
    margin-bottom: 18px;
}

.dl-get-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.dl-get-list li {
    display: flex;
    align-items: center;   /* <-- jetzt beide Elemente auf gleicher Höhe */
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    font-size: 15px;
    color: #d8d8d8;
}

.dl-get-list li:last-child {
    border-bottom: none;
}

.dl-get-icon {
    color: #46e3a3;
    font-size: 18px;
    margin-top: 1px;
    text-shadow: 0 0 6px rgba(70, 227, 163, 0.25);
}

.dl-get-note {
    text-align: center;
    font-size: 13px;
    color: #b5b5b5;
    margin-top: 14px;
    line-height: 1.45;
}

/* FLOW Section – Ablauf */

.dl-flow-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 24px;
    border-radius: 18px;
    background: radial-gradient(circle at center, rgba(10, 12, 20, 0.9), rgba(5, 5, 10, 0.96));
    border: 1px solid rgba(255, 215, 0, 0.08);

    /* NEU: für vertikale Zentrierung */
    display: flex;
    flex-direction: column;      /* falls Inhalt zeilenweise ist */
    justify-content: center;     /* vertikal mittig */
}

.dl-flow-card h2 {
    text-align: center;
    margin-bottom: 24px;
}

.dl-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dl-flow-step {
    display: flex;
    align-items: center;   /* <-- jetzt vertikal sauber ausgerichtet */
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.dl-flow-step:last-child {
    border-bottom: none;
}

.dl-flow-number {
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(70, 227, 163, 0.7);
    color: #46e3a3;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(70, 227, 163, 0.25);
    box-shadow: 0 0 12px rgba(70, 227, 163, 0.12);
}

.dl-flow-step p {
    font-size: 15px;
    color: #d8d8d8;
    line-height: 1.5;
}

.dl-flow-note {
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
    color: #b2b2b2;
    line-height: 1.45;
}

/* FINAL CTA Section */

.dl-final-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 36px 24px 40px;
    border-radius: 18px;
    background: radial-gradient(circle at center, rgba(10, 12, 20, 0.9), rgba(5, 5, 10, 0.96));
    border: 1px solid rgba(255, 215, 0, 0.10);
    text-align: center;
}

.dl-final-line {
    width: 80px;
    height: 2px;
    margin: 0 auto 20px auto;
    background: linear-gradient(
        to right,
        rgba(70, 227, 163, 0.0),
        rgba(70, 227, 163, 0.8),
        rgba(70, 227, 163, 0.0)
    );
}

.dl-final-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.dl-final-text {
    font-size: 15px;
    color: #dcdcdc;
    max-width: 620px;
    margin: 0 auto 26px auto;
}

.dl-final-button {
    display: inline-block;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.dl-final-note {
    margin-top: 22px;
    color: #a7a7a7;
    font-size: 13px;
    line-height: 1.45;
}

/* FOOTER */

.dl-footer {
    margin-top: 60px;
    padding: 40px 20px;
    text-align: center;
    color: #bdbdbd;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(8px);
}

.dl-footer-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgb(255, 215, 0);
    margin-bottom: 8px;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.25);
}

.dl-footer-sub {
    font-size: 13px;
    color: #a7a7a7;
    margin-bottom: 18px;
    line-height: 1.45;
}

.dl-footer-links {
    font-size: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #cfcfcf;
}

.dl-footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dl-footer-links a:hover {
    color: rgb(255, 215, 0);
}

/* Mobile */

@media (max-width: 700px) {
    .dl-header {
        padding: 10px 16px;
    }

    .dl-nav {
        display: none;
    }

    .dl-hero {
        padding: 72px 12px 40px;
    }

    .dl-hero-inner {
        padding: 24px 18px;
        margin-right: 0;
        margin-left: 0;
    }

    .dl-hero h1 {
        font-size: 24px;
    }

    .dl-hero-text {
        font-size: 14px;
    }

    .dl-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dl-hero-button,
    .dl-hero-button-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .dl-about-card {
        padding: 20px 16px;
    }

    .dl-about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dl-get-card {
        padding: 24px 16px;
    }

    .dl-flow-card {
        padding: 28px 16px;
    }

    .dl-flow-number {
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .dl-flow-step p {
        font-size: 14px;
    }

    .dl-final-card {
        padding: 28px 18px;
    }

    .dl-final-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .dl-atmos {
        border-radius: 12px;
    }
}

/* FORM / FRAGEBOGEN */

.dl-form {
    max-width: 960px;
}

.dl-form-card {
    max-width: 860px;
    margin: 32px auto;
    padding: 28px 22px 32px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(10, 12, 20, 0.90), rgba(5, 5, 10, 0.97));
    border: 1px solid rgba(255, 215, 0, 0.10);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}

.dl-form-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #46e3a3;
}

.dl-form-intro {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 18px;
}

.dl-form-row {
    margin-bottom: 14px;
}

.dl-form-row label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #e0e0e0;
}

.dl-form-row select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    background: #050509;
    color: #f5f5f5;
    font-size: 14px;
}

.dl-form-divider {
    border: none;
    border-top: 1px solid rgba(255, 215, 0, 0.14);
    margin: 18px 0;
}

.dl-form-hint {
    font-size: 13px;
    color: #bcbcbc;
    margin-bottom: 12px;
}

.dl-question {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-question:first-of-type {
    border-top: none;
}

.dl-question p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #e3e3e3;
}

.dl-q-number {
    color: #46e3a3;
    font-weight: 500;
    margin-right: 4px;
}

.dl-scale {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dl-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    color: #cfcfcf;
}

/* moderne Browser: Akzentfarbe der Radio-Buttons */
.dl-scale input[type="radio"] {
    accent-color: #46e3a3;
}

.dl-form-submit {
    margin-top: 22px;
    padding-inline: 28px;
}

/* Ergebnisbox */

.dl-result {
    margin-top: 26px;
    padding: 18px 16px 20px;
    border-radius: 16px;
    background: rgba(5, 10, 12, 0.95);
    border: 1px solid rgba(70, 227, 163, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.dl-result h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    color: #46e3a3;
}

.dl-result-meta {
    font-size: 13px;
    color: #b8b8b8;
    margin-bottom: 10px;
}

.dl-result-core {
    font-size: 14px;
    color: #e5e5e5;
    margin-bottom: 6px;
}

.dl-result-detail {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 10px;
}

.dl-result-note {
    font-size: 12px;
    color: #9b9b9b;
}

/* Mobile Tweaks */

@media (max-width: 700px) {
    .dl-form-card {
        padding: 22px 14px 26px;
    }
    .dl-scale {
        gap: 8px;
    }
}

/* CTA im Ergebnisbereich */

.dl-result-cta {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 26px;
    font-size: 14px;
}

.dl-result-field {
    font-size: 13px;
    color: #c5c5c5;
    margin: 6px 0 6px 0;
}

/* REPORT PAGE */

.dl-report-hero {
    min-height: 40vh;
    border-bottom: 2px solid rgba(255, 215, 0, 0.20);
}

.dl-report-hero-bg {
    background:
        linear-gradient(to bottom, rgba(5, 5, 10, 0.40), rgba(5, 5, 10, 0.95)),
        url("dropleaf.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dl-report-hero-inner {
    max-width: 640px;
    margin-left: auto;
    margin-right: 36px;
}

.dl-report-section {
    max-width: 960px;
}

.dl-report-card {
    max-width: 860px;
    margin: 32px auto;
    padding: 28px 22px 32px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(10, 12, 20, 0.92), rgba(5, 5, 10, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.dl-report-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 22px;
    color: #46e3a3;
}

.dl-report-meta {
    font-size: 13px;
    color: #b7b7b7;
    margin-bottom: 18px;
}

.dl-report-block {
    margin-bottom: 18px;
}

.dl-report-block h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: rgb(255, 215, 0);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dl-report-block p {
    font-size: 14px;
    color: #dedede;
}

.dl-report-list {
    font-size: 14px;
    color: #d7d7d7;
    padding-left: 18px;
    margin-top: 6px;
}

.dl-report-list li {
    margin-bottom: 4px;
}

.dl-report-cta-area {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 215, 0, 0.16);
    text-align: center;
}

.dl-report-price {
    font-size: 14px;
    color: #e1e1e1;
    margin-bottom: 10px;
}

.dl-report-cta {
    margin-bottom: 10px;
}

.dl-report-note {
    font-size: 12px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 700px) {
    .dl-report-hero-inner {
        margin-right: 0;
        margin-left: 0;
        padding: 18px;
    }
    .dl-report-card {
        padding: 22px 14px 26px;
    }
}

