/* ==========================================================================
   home.css — Seitenspezifische Regeln der Startseite
   Nur Sektionen, die NICHT in base.css/components.css liegen
   (Hero, Scroll-Indicator, Stack, Dark-CTA, Buttons, Header, Footer dort).
   ========================================================================== */

/* ---------- POSITIONIERUNG ---------- */
.positioning { padding: 130px 0; }
.positioning .grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.positioning .head .eyebrow { margin-bottom: 16px; }
.positioning .head h2 { font-size: 46px; line-height: 1.08; }
.positioning .body p { font-size: 19px; line-height: 1.65; margin-bottom: 24px; }
.positioning .body p strong { font-weight: 600; color: var(--color-marine); }

/* ---------- LEISTUNGEN ---------- */
.services { padding: 130px 0; background: var(--color-sand); position: relative; overflow: hidden; }
.services-geo { position: absolute; right: -120px; top: -80px; width: 460px; height: 460px; opacity: 0.05; pointer-events: none; }
.services .container { position: relative; z-index: 1; }
.services .head { margin-bottom: 56px; max-width: 640px; }
.services .head .eyebrow { margin-bottom: 16px; }
.services .head h2 { font-size: 46px; line-height: 1.08; margin-bottom: 20px; }
.services .head p { font-size: 18px; color: var(--color-text-primary); line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--color-paper); border: 1px solid var(--color-border); border-radius: 12px;
  padding: 40px 32px; position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--color-brass), var(--color-brass-light));
  transition: width 0.5s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--color-border-strong); box-shadow: 0 12px 32px rgba(27, 58, 82, 0.08); }
.service-card:hover::after { width: 100%; }
.service-card .num {
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em;
  color: var(--color-brass); margin-bottom: 20px;
}
.service-card h3 { font-family: "Inter", sans-serif; font-size: 22px; color: var(--color-marine); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 16px; line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.service-card .more { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500; color: var(--color-marine); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-card .more:hover { color: var(--color-brass); }
.service-card .more .arrow { display: inline-block; transition: transform 0.22s var(--ease); }
.service-card:hover .more .arrow { transform: translateX(4px); }
.service-card .bg-accent { position: absolute; right: -30px; bottom: -30px; width: 130px; height: 130px; opacity: 0.04; transition: opacity 0.4s var(--ease); pointer-events: none; }
.service-card:hover .bg-accent { opacity: 0.1; }

/* ---------- PRINZIPIEN (Karten-Stack, seitenspezifischer Rahmen) ---------- */
.principles { background: var(--color-marine-deep); color: var(--color-paper); padding: 130px 0 0; position: relative; overflow: hidden; }
.principles-geo { position: absolute; top: 60px; right: -150px; width: 600px; height: 600px; opacity: 0.16; z-index: 0; pointer-events: none; }
.principles .container { position: relative; z-index: 1; }
.principles .head { margin-bottom: 64px; max-width: 720px; }
.principles .head .eyebrow { color: var(--color-brass-light); margin-bottom: 16px; }
.principles .head h2 { font-size: 46px; line-height: 1.08; color: var(--color-paper); margin-bottom: 20px; }
.principles .head p { font-size: 18px; color: rgba(250, 248, 245, 0.75); line-height: 1.6; }
.section-curve-top { position: relative; }
.section-curve-top::before {
  content: ""; display: block; height: 80px; background: var(--color-paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0; margin-top: -80px; position: relative; z-index: 2;
}

/* ---------- QUOTE ---------- */
.quote-section { padding: 130px 0; }
.quote-block { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.quote-block .mark {
  font-family: "Inter", sans-serif; font-size: 120px; line-height: 0.6; color: var(--color-brass);
  opacity: 0.25; height: 60px; display: block;
}
.quote-block blockquote {
  font-family: "Lora", serif; font-style: italic; font-size: 34px; line-height: 1.35;
  color: var(--color-marine); margin-bottom: 28px;
}
.quote-block .attribution {
  font-family: "Inter", sans-serif; font-size: 14px; color: var(--color-stone); letter-spacing: 0.05em;
}
.quote-block .attribution strong { color: var(--color-marine); font-weight: 500; }

/* ---------- ÜBER UNS ---------- */
.about { padding: 130px 0; background: var(--color-sand); position: relative; overflow: hidden; }
.about-geo { position: absolute; left: -100px; bottom: -100px; width: 440px; height: 440px; opacity: 0.05; pointer-events: none; }
.about .container { position: relative; z-index: 1; }
.about .grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.about .col-left .eyebrow { margin-bottom: 16px; }
.about .col-left h2 { font-size: 40px; line-height: 1.1; }
.about .col-right p { font-size: 18px; line-height: 1.65; margin-bottom: 20px; }
.about .col-right p:last-of-type { margin-bottom: 0; }
.about .col-right .more-link { font-family: "Inter", sans-serif; font-size: 15px; font-weight: 500; color: var(--color-marine); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; }
.about .col-right .more-link:hover { color: var(--color-brass); }
.about .col-right .more-link .arrow { display: inline-block; transition: transform 0.22s var(--ease); }
.about .col-right .more-link:hover .arrow { transform: translateX(4px); }

/* ---------- WAS SIE ERWARTET ---------- */
.process-home { padding: 130px 0; }
.process-home .head { margin-bottom: 56px; max-width: 720px; }
.process-home .head .eyebrow { margin-bottom: 16px; }
.process-home .head h2 { font-size: 46px; line-height: 1.08; margin-bottom: 20px; }
.process-home .head p { font-size: 18px; color: var(--color-text-primary); line-height: 1.6; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step {
  position: relative; padding: 36px 30px; border-radius: 12px; border: 1px solid var(--color-border);
  overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process-step::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--color-brass), var(--color-brass-light)); transition: width 0.5s var(--ease-out);
}
.process-step:hover { transform: translateY(-4px); border-color: var(--color-border-strong); box-shadow: 0 12px 32px rgba(27, 58, 82, 0.06); }
.process-step:hover::after { width: 100%; }
.process-step .step-number {
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-brass); margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.process-step .step-number .line { flex: 1; height: 1px; background: var(--color-border-brass); }
.process-step h3 { font-family: "Inter", sans-serif; font-size: 20px; color: var(--color-marine); margin-bottom: 12px; line-height: 1.3; }
.process-step p { font-size: 16px; line-height: 1.6; }
.process-step .bg-accent { position: absolute; right: 14px; bottom: 14px; width: 130px; height: 130px; opacity: 0; transform: translateY(8px) rotate(-4deg); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); pointer-events: none; }
.process-step:hover .bg-accent { opacity: 0.07; transform: translateY(0) rotate(0deg); }
.process-step > *:not(.bg-accent) { position: relative; z-index: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .positioning .grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .about .grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .positioning, .services, .quote-section, .about, .process-home { padding: 80px 0; }
  .principles { padding: 80px 0 0; }
  .positioning .head h2, .services .head h2, .principles .head h2, .process-home .head h2 { font-size: 32px; }
  .about .col-left h2 { font-size: 28px; }
  .quote-block blockquote { font-size: 24px; }
}
