/* styles2.css — Abschnitts- und Mockup-spezifische Styles */

/* ── Header ─────────────────────────────────────────────── */
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; display: block; }
.brand-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -.01em; }
.brand-name b { color: var(--accent); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--accent-ink); }
.hdr-cta { display: flex; align-items: center; gap: 6px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
@media (max-width: 880px) {
  .nav { display: none; }
  .hdr-cta .btn-secondary { display: none; }
  .burger { display: inline-flex; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 72px 0 88px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 300; line-height: 1.04; letter-spacing: -.03em; margin: 22px 0 24px; }
.hero h1 .hl { font-weight: 600; color: var(--accent); white-space: nowrap; }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--ink-soft); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--ink-mute); margin-top: 7px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-orbital { position: absolute; top: -54px; right: -36px; opacity: .9; pointer-events: none; }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-orbital { top: -40px; right: 0; }
}

/* ── Browser-Mockup ─────────────────────────────────────── */
.bm { width: 100%; max-width: 460px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lift); border: 1px solid var(--line); overflow: hidden; }
.bm-bar { height: 38px; background: #F4EFE9; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.bm-dot { width: 9px; height: 9px; border-radius: 50%; background: #D9CFC2; }
.bm-url { margin-left: 12px; flex: 1; height: 18px; background: #fff; border-radius: 6px; font-size: 10px; color: var(--ink-mute); display: flex; align-items: center; padding: 0 10px; border: 1px solid var(--line-soft); font-family: 'Inter'; }
.bm-body { padding: 22px 24px 26px; }
.bm-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.bm-logo { display: flex; align-items: center; gap: 7px; font-family: 'Outfit'; font-weight: 600; font-size: 13px; color: var(--ink); }
.bm-logo-mark { width: 16px; height: 16px; border-radius: 50%; border: 2.5px solid var(--accent); position: relative; }
.bm-logo-mark::after { content: ""; position: absolute; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.bm-pill { width: 64px; height: 22px; border-radius: 999px; background: var(--accent); }
.bm-eyebrow { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; margin-bottom: 9px; }
.bm-h { font-family: 'Outfit'; font-weight: 300; font-size: 23px; line-height: 1.12; color: var(--ink); letter-spacing: -.02em; margin-bottom: 14px; }
.bm-p { height: 8px; background: #ECE4D9; border-radius: 4px; margin-bottom: 8px; }
.bm-p.short { width: 62%; }
.bm-cta { display: inline-block; margin-top: 18px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; padding: 9px 16px; border-radius: 999px; }
.bm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.bm-c { border: 1px solid var(--line); border-radius: 10px; padding: 12px 11px; display: flex; flex-direction: column; gap: 7px; }
.bm-ci { width: 18px; height: 18px; border-radius: 5px; background: var(--accent-tint-2); }
.bm-cl { height: 6px; border-radius: 3px; background: #ECE4D9; }
.bm-cl.s { width: 70%; }

/* ── Section heading block ──────────────────────────────── */
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-family: 'Outfit'; font-weight: 300; font-size: clamp(27px, 3.2vw, 41px); line-height: 1.12; letter-spacing: -.025em; color: var(--ink); margin: 16px 0 0; }
.sec-head p.lede { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-top: 18px; }

/* ── Problem cards ──────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.pcard-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pcard h3 { font-family: 'Outfit'; font-weight: 600; font-size: 18px; color: var(--ink); margin-bottom: 9px; }
.pcard p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

/* ── Solution before/after ──────────────────────────────── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; align-items: stretch; }
.ba-col { border-radius: 20px; padding: 30px; border: 1px solid var(--line); }
.ba-col.before { background: var(--card-bg); }
.ba-col.after { background: color-mix(in srgb, var(--accent) 6%, var(--card-bg)); border-color: color-mix(in srgb, var(--accent) 28%, var(--line)); }
.ba-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.ba-tag.before { background: #EFE7DB; color: var(--ink-mute); }
.ba-tag.after { background: var(--accent); color: #fff; }
.ba-li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; font-size: 15px; line-height: 1.5; border-bottom: 1px solid var(--line-soft); }
.ba-li:last-child { border-bottom: none; }
.ba-li .bi { flex-shrink: 0; margin-top: 1px; }
.ba-li.before { color: var(--ink-mute); }
.ba-li.before .bi { color: #C9BCA9; }
.ba-li.after { color: var(--ink); }
.ba-li.after .bi { color: var(--accent); }
@media (max-width: 760px) { .cards-3, .ba-grid { grid-template-columns: 1fr; } }

/* ── Services grid ──────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 52px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--card-bg); }
.svc { display: flex; gap: 16px; padding: 26px 28px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); transition: background .2s; }
.svc:hover { background: color-mix(in srgb, var(--accent) 4%, var(--card-bg)); }
.svc:nth-child(2n) { border-right: none; }
.svc-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }
.svc h3 { font-family: 'Outfit'; font-weight: 600; font-size: 16.5px; color: var(--ink); margin-bottom: 5px; }
.svc p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } .svc { border-right: none; } }

/* ── Legal trust card ───────────────────────────────────── */
.legal-card { display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: start; background: var(--card-bg); border: 1px solid var(--line); border-radius: 24px; padding: 44px; }
.legal-shield { width: 80px; height: 80px; border-radius: 20px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }
.legal-card h2 { font-family: 'Outfit'; font-weight: 400; font-size: clamp(24px,2.8vw,34px); letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; }
.legal-card p.lede { font-size: 16px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 22px; }
.legal-points { display: flex; flex-direction: column; gap: 13px; }
.legal-pt { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--ink); }
.legal-pt .bi { flex-shrink: 0; color: var(--accent); margin-top: 1px; }
@media (max-width: 680px) { .legal-card { grid-template-columns: 1fr; padding: 32px; gap: 22px; } }

/* ── Process timeline ───────────────────────────────────── */
.proc { margin-top: 54px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.proc::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1.5px; background: var(--line); z-index: 0; }
.pstep { position: relative; z-index: 1; }
.pstep-n { width: 54px; height: 54px; border-radius: 50%; background: var(--card-bg); border: 1.5px solid var(--line); color: var(--accent-ink); font-family: 'Outfit'; font-weight: 600; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .25s; }
.pstep:hover .pstep-n { border-color: var(--accent); box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.pstep h3 { font-family: 'Outfit'; font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.pstep p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 940px) {
  .proc { grid-template-columns: 1fr; gap: 0; }
  .proc::before { left: 26px; right: auto; top: 0; bottom: 0; width: 1.5px; height: auto; }
  .pstep { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding-bottom: 28px; align-items: start; }
  .pstep-n { margin-bottom: 0; }
}

/* ── Package ─────────────────────────────────────────────── */
.pkg-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; margin-top: 14px; }
.pkg-card { background: var(--card-bg); border: 1px solid var(--line); border-radius: 28px; padding: 40px; box-shadow: var(--shadow-soft); position: relative; }
.pkg-card.featured { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); box-shadow: var(--shadow-lift); }
.pkg-badge { position: absolute; top: -13px; left: 40px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.pkg-name { font-family: 'Outfit'; font-weight: 600; font-size: 24px; color: var(--ink); }
.pkg-tag { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; }
.pkg-price { display: flex; align-items: baseline; gap: 10px; margin: 26px 0 4px; }
.pkg-price .amt { font-family: 'Outfit'; font-weight: 600; font-size: 44px; color: var(--ink); letter-spacing: -.02em; }
.pkg-price .note { font-size: 13px; color: var(--ink-mute); }
.pkg-incl { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line-soft); padding-top: 24px; }
.pkg-incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.pkg-incl li .bi { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pkg-card .btn-primary { width: 100%; justify-content: center; }
.pkg-side h2 { font-family: 'Outfit'; font-weight: 300; font-size: clamp(26px,3vw,38px); line-height: 1.14; letter-spacing: -.025em; color: var(--ink); margin: 16px 0 18px; }
.pkg-side p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.pkg-excl { margin-top: 22px; padding: 18px 20px; background: var(--band-bg); border: 1px solid var(--line); border-radius: 14px; font-size: 13.5px; line-height: 1.6; color: var(--ink-mute); display: flex; gap: 12px; }
.pkg-excl .bi { flex-shrink: 0; color: var(--ink-mute); margin-top: 2px; }
.section.band .pkg-excl { background: var(--card-bg); }
@media (max-width: 880px) { .pkg-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ── Audience ────────────────────────────────────────────── */
.aud-chips { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 40px; }
.aud-chip { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 500; color: var(--ink); background: var(--card-bg); border: 1px solid var(--line); padding: 13px 20px; border-radius: 999px; transition: all .2s; }
.aud-chip:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.aud-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

/* ── Trust ───────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; margin-top: 14px; align-items: center; }
.trust-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tp { background: var(--card-bg); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.tp-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-tint); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.tp h3 { font-family: 'Outfit'; font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.tp p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Final CTA ───────────────────────────────────────────── */
.final { text-align: center; position: relative; overflow: hidden; }
.final-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.final h2 { font-family: 'Outfit'; font-weight: 300; font-size: clamp(30px,4vw,52px); line-height: 1.08; letter-spacing: -.03em; color: var(--ink); }
.final p { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 22px auto 36px; max-width: 600px; }
.final-orbital { position: absolute; opacity: .5; pointer-events: none; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: #fff; padding: 64px 0 36px; }
.footer .wrap { color: #fff; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr .8fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-name b { color: var(--accent); }
.foot-about { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 320px; }
.foot-privacy { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 16px; }
.foot-privacy svg { width: 15px; height: 15px; color: var(--lime); flex-shrink: 0; }
.foot-col h4 { font-family: 'Outfit'; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.foot-col a, .foot-col span { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,.8); text-decoration: none; margin-bottom: 12px; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }
.foot-col svg { width: 16px; height: 16px; color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
.foot-bottom .disc { max-width: 620px; line-height: 1.5; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ── Persönliche Beratung ────────────────────────────────── */
.consult-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 60px; align-items: center; }
.consult-photo-col { position: relative; display: flex; justify-content: center; }
.consult-photo { display: block; width: 100%; max-width: 420px; height: 500px; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow-lift); background: var(--band-bg); overflow: hidden; }
.section.band .consult-photo { background: var(--card-bg); }
.consult-orbital { position: absolute; top: -30px; left: 0; z-index: 3; pointer-events: none; }
.consult-h { font-family: 'Outfit'; font-weight: 300; font-size: clamp(28px,3.4vw,42px); line-height: 1.1; letter-spacing: -.025em; color: var(--ink); margin: 16px 0 18px; }
.consult-text { font-size: 17px; line-height: 1.72; color: var(--ink-soft); }
.consult-points { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.consult-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.consult-points li .bi { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.consult-sign { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; border-left: 2px solid var(--accent); margin-bottom: 26px; }
.consult-name { font-family: 'Outfit'; font-weight: 600; font-size: 18px; color: var(--ink); }
.consult-role { font-size: 13.5px; color: var(--ink-mute); }
.consult-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .consult-grid { grid-template-columns: 1fr; gap: 36px; }
  .consult-photo-col { order: -1; }
  .consult-photo { height: 420px; }
}

@keyframes noi-spin { to { transform: rotate(360deg); } }
