/* ── Base ─────────────────────────────── */
:root {
    --bg: #000;
    --text: #fff;
    --accent: #f5c842;
    --card-bg: #17151e;
    --card-text: #ebe7e7;
    --muted: #88849c;
    --border: #302c3f;
}
body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex; flex-direction: column;
}
img { max-width: 100%; height: auto; }
.impressum, .impressum h2, .impressum h3, .impressum p { color: var(--card-text); }

@media (min-width: 768px) {
    body { font-size: 17px; line-height: 1.7; }
}
@media (min-width: 1024px) {
    body { font-size: 18px; line-height: 30px; }
}


/* ── Hero ─────────────────────────────── */
.name { color: var(--text); margin-bottom: 24px; }
.hero { max-width: 1200px; margin: 0 auto; padding: 20px 16px 40px; text-align: center; }
.hero h1 { color: var(--text); font-weight: 700; font-size: 28px; line-height: 1.2; margin: 0 0 16px 0; }
.sub-heading { font-size: 16px; font-weight: 400; color: var(--muted); }

@media (min-width: 768px) {
    .name { margin-bottom: 32px; }
    .hero { padding: 25px 20px 60px; }
    .hero h1 { font-size: 36px; margin-bottom: 18px; }
    .sub-heading { font-size: 18px; }
}
@media (min-width: 1024px) {
    .name { margin-bottom: 40px; }
    .hero { padding: 30px 20px 80px; }
    .hero h1 { font-size: clamp(36px, 5vw, 54px); margin-bottom: 20px; }
    .sub-heading { font-size: clamp(18px, 2.5vw, 20px); }
}


/* ── Button ───────────────────────────── */
.button { background-color: var(--accent); color: var(--bg); padding: 6px 32px; border-radius: 9999px; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-block; margin-top: 24px; margin-bottom: 24px; }

@media (min-width: 768px) {
    .button { padding: 6px 38px; margin-top: 30px; margin-bottom: 30px; }
}
@media (min-width: 1024px) {
    .button { padding: 6px 44px; margin-top: 36px; margin-bottom: 36px; }
}

/* ── Logos ───────────────────────────── */
.logo-section { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.logo-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.logo-item { display: flex; flex-direction: row; align-items: center; gap: 6px; }
.logo-item img { height: 20px; filter: grayscale(100%) brightness(0.8); opacity: 0.4; }
.logo-item span { font-size: 12px; color: var(--muted); }

@media (min-width: 768px) {
    .logo-section { gap: 24px; margin-top: 35px; }
    .logo-row { gap: 40px; }
    .logo-item { gap: 7px; }
    .logo-item img { height: 24px; }
    .logo-item span { font-size: 14px; }
}
@media (min-width: 1024px) {
    .logo-section { gap: 30px; margin-top: 40px; }
    .logo-row { gap: clamp(40px, 5vw, 80px); }
    .logo-item { gap: 8px; }
    .logo-item img { height: clamp(24px, 3vw, 30px); }
    .logo-item span { font-size: clamp(14px, 2vw, 16px); }
}

/* ── css_two_column ("About") ───────────────────────────── */
.two-column-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; }
.two-column-section, .two-column-section p, .two-column-section h3 { color: var(--text); }
.two-column-section h2 { color: var(--text); text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 32px; line-height: 1.2; }
.two-column-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
.two-column-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.two-column-grid p { margin-bottom: 16px; }
.two-column-grid h3 { font-size: 18px; font-weight: 700; margin: 20px 0 10px 0; }

@media (min-width: 768px) {
    .two-column-section { padding: 50px 20px; }
    .two-column-section h2 { font-size: 32px; margin-bottom: 40px; }
    .two-column-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .two-column-grid h3 { font-size: 19px; margin: 22px 0 11px 0; }
}
@media (min-width: 1024px) {
    .two-column-section { padding: 60px 20px; }
    .two-column-section h2 { font-size: clamp(32px, 4vw, 40px); margin-bottom: 60px; }
    .two-column-grid { gap: 40px; }
    .two-column-grid h3 { font-size: 20px; margin: 24px 0 12px 0; }
}

/* ── features ('Warum ich?') ───────────────────────────── */
.features-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; text-align: center; }
.features-section h2 { color: var(--text); font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card { background: var(--card-bg); border-radius: 12px; padding: 20px; text-align: center; }
.feature-card img { height: 100px; margin-bottom: 16px; border-radius: 8px; }
.feature-card h4 { color: var(--card-text); font-size: 16px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

@media (min-width: 768px) {
    .features-section { padding: 50px 20px; }
    .features-section h2 { font-size: 32px; margin-bottom: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .feature-card { padding: 22px; }
    .feature-card h4 { font-size: 17px; margin-bottom: 11px; }
}
@media (min-width: 1024px) {
    .features-section { padding: 60px 20px; }
    .features-section h2 { font-size: clamp(32px, 4vw, 40px); margin-bottom: 60px; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .feature-card { padding: 24px; }
    .feature-card h4 { font-size: 18px; margin-bottom: 12px; }
}

/* ── process ('So arbeite ich') ───────────────────────────── */
.process-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; text-align: center; }
.process-section h2 { color: var(--text); font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 12px; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text);
    font-weight: 700; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; flex-shrink: 0;
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.3);
}
.step-title { color: var(--text); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.step-desc { color: var(--muted); font-size: 14px; line-height: 1.5; }
.process-arrow { display: flex; justify-content: center; align-items: center; color: var(--muted); font-size: 24px; padding: 12px 0; }

@media (max-width: 767px) {
    .process-arrow span { display: inline-block; transform: rotate(90deg); }
}
@media (min-width: 768px) {
    .process-section { padding: 50px 20px; }
    .process-section h2 { font-size: 32px; margin-bottom: 40px; }
    .process-grid { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; }
    .process-arrow { padding: 0; padding-top: 12px; }
    .process-arrow span { display: inline-block; transform: rotate(0deg); }
}
@media (min-width: 1024px) {
    .process-section { padding: 60px 20px; }
    .process-section h2 { font-size: clamp(32px, 4vw, 40px); margin-bottom: 60px; }
    .step-title { font-size: 18px; }
    .step-desc { font-size: 15px; }
}

/* ── Testimonials ───────────────────────────── */
.testimonials-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; text-align: center; }
.testimonials-section h2 { color: var(--text); font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testimonial-card { background: var(--card-bg); border-radius: 12px; padding: 24px; text-align: center; }
.testimonial-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.testimonial-card .name { font-weight: 700; font-size: 15px; margin-bottom: 2px; color: var(--card-text); }
.testimonial-card .role { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.testimonial-card .quote { font-size: 14px; color: var(--card-text); line-height: 1.6; font-style: italic; }

@media (min-width: 768px) {
    .testimonials-section { padding: 50px 20px; }
    .testimonials-section h2 { font-size: 32px; margin-bottom: 40px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonial-card { padding: 28px; }
    .testimonial-card img { width: 100px; height: 100px; margin-bottom: 14px; }
}
@media (min-width: 1024px) {
    .testimonials-section { padding: 60px 20px; }
    .testimonials-section h2 { font-size: clamp(32px, 4vw, 40px); margin-bottom: 60px; }
    .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .testimonial-card { padding: 32px; }
    .testimonial-card img { width: 120px; height: 120px; margin-bottom: 16px; }
}

/* ── Benefits ('Dein Ergebnis') ───────────────────────────── */
.benefits-section { max-width: 1200px; margin: 0 auto; padding: 40px 16px; text-align: center; }
.benefits-section h2 { color: var(--text); font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 16px; text-align: left; align-items: stretch; }
.benefits-card { background: var(--card-bg); border-radius: 12px; padding: 24px; height: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: center; }
.benefits-list { list-style: none !important; padding: 0; margin: 0; }
.benefits-list li { list-style-type: none !important; padding: 6px 0; padding-left: 24px; position: relative; color: var(--card-text); }
.benefits-list li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); }
.benefits-grid img { width: 100%; height: 100%; object-fit: contain; opacity: 0.8; border-radius: 12px; }

@media (min-width: 768px) {
    .benefits-section { padding: 50px 20px; }
    .benefits-section h2 { font-size: 32px; margin-bottom: 32px; }
    .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .benefits-card { padding: 28px; }
}
@media (min-width: 1024px) {
    .benefits-section { padding: 60px 20px; }
    .benefits-section h2 { font-size: clamp(32px, 4vw, 40px); margin-bottom: 40px; }
    .benefits-grid { gap: 24px; }
    .benefits-card { padding: 32px; }
}

/* ── Footer ───────────────────────────── */
.footer { max-width: 1200px; margin: 0 auto; padding: 16px 16px 32px; text-align: center; }
.footer-gradient { height: 150px; background: linear-gradient(to top, var(--border) 0%, transparent 100%); opacity: 0.15; margin-top: -150px; pointer-events: none; }
.social-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.social-links a { color: var(--muted); text-decoration: none; }
.social-links svg { width: 22px; height: 22px; fill: var(--muted); }
.copyright { color: var(--muted); font-size: 11px; }

@media (min-width: 1024px) {
    .footer { padding: 20px 20px 40px; }
    .social-links svg { width: 26px; height: 26px; }
    .copyright { font-size: 12px; }
}
