/* EchoLead Consulting – Stylesheet */

/* ══════════════════════════════════════════
   FARB-TOKENS – an Logo-Farben anpassen
   ══════════════════════════════════════════ */
:root {
    --c-bg-dark:      #0B1120;
    --c-bg-card:      #111827;
    --c-bg-light:     #F8FAFC;
    --c-accent:       #2E9ABA;   /* Petrol, abgeleitet aus Logo (#285864) */
    --c-accent-dark:  #1F7089;
    --c-text-inv:     #F8FAFC;
    --c-text-muted:   #94A3B8;
    --c-text-dark:    #0F172A;
    --c-border-dark:  rgba(255,255,255,0.07);
    --c-border-light: #E2E8F0;

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id], div[id] { scroll-margin-top: 84px; } /* Fixe Nav überdeckt Anker nicht */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}
body {
    font-family: var(--ff-body);
    color: var(--c-text-dark);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    height: 70px;
    background: rgba(11,17,32,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border-dark);
}
.nav-logo img { height: 40px; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-text-inv); }
.nav-cta {
    background: var(--c-accent) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
}
.nav-cta:hover { background: var(--c-accent-dark) !important; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--c-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 6% 90px;
    position: relative;
    overflow: hidden;
}
/* Subtile Echo-Wellen-Grafik rechts */
.hero::after {
    content: '';
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    border: 1px solid rgba(46,154,186,0.07);
    box-shadow:
        0 0 0 4vw  rgba(46,154,186,0.04),
        0 0 0 8vw  rgba(46,154,186,0.025),
        0 0 0 14vw rgba(46,154,186,0.015),
        0 0 0 20vw rgba(46,154,186,0.008);
    pointer-events: none;
    animation: echoPulse 9s ease-in-out infinite alternate;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 28px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--c-accent);
}
.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--c-text-inv);
    max-width: 760px;
    margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--c-accent); }
.hero-sub {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 540px;
    margin-bottom: 24px;
    line-height: 1.75;
}
.hero-explainer {
    background: rgba(46,154,186,0.07);
    border: 1px solid rgba(46,154,186,0.18);
    border-radius: 10px;
    padding: 16px 22px;
    max-width: 560px;
    margin-bottom: 40px;
}
.hero-explainer p { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.65; }
.hero-explainer strong { color: var(--c-text-inv); font-weight: 600; }
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--c-accent); color: #fff;
    text-decoration: none; padding: 14px 28px;
    border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--c-accent-dark); transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--c-text-muted);
    text-decoration: none; padding: 14px 28px;
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.14);
    font-weight: 500; font-size: 0.95rem;
    transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--c-text-inv); border-color: rgba(255,255,255,0.35); }
.hero-branchen { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.branchen-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--c-text-muted); margin-right: 2px;
}
.pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    color: var(--c-text-muted);
    font-size: 0.78rem; padding: 5px 14px; border-radius: 100px;
}

/* ── STATS BAND ── */
.stats-band {
    background: var(--c-bg-card);
    border-bottom: 1px solid var(--c-border-dark);
    display: flex;
    justify-content: center;
}
.stat-item {
    flex: 1; text-align: center; padding: 36px 24px;
    border-right: 1px solid var(--c-border-dark);
}
.stat-item:last-child { border-right: none; }
.stat-val {
    font-family: var(--ff-display);
    font-size: 2.4rem; font-weight: 700;
    color: var(--c-text-inv); line-height: 1; margin-bottom: 6px;
}
.stat-val span { color: var(--c-accent); }
.stat-val .num { color: var(--c-text-inv); }
.stat-lbl { font-size: 0.78rem; color: var(--c-text-muted); letter-spacing: 0.04em; }

/* ── SECTION COMMON ── */
.section { padding: 96px 6%; }
.eyebrow {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px;
}
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; line-height: 1.22; margin-bottom: 14px;
}
.section-sub { font-size: 0.975rem; color: #64748B; max-width: 520px; line-height: 1.75; }
.s-header { margin-bottom: 56px; }

/* ── METHODE ── */
.methode { background: var(--c-bg-light); }
.methode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.methode-card {
    background: #fff; border: 1px solid var(--c-border-light);
    border-radius: 14px; padding: 40px; position: relative; overflow: hidden;
}
.methode-card::after {
    content: attr(data-word);
    position: absolute; right: -8px; bottom: -18px;
    font-family: var(--ff-display); font-size: 6.5rem; font-weight: 700;
    color: rgba(46,154,186,0.045); line-height: 1;
    pointer-events: none; user-select: none;
}
.m-icon {
    width: 46px; height: 46px;
    background: rgba(46,154,186,0.09); border-radius: 11px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.m-icon svg { width: 22px; height: 22px; stroke: var(--c-accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.m-tag {
    display: inline-block; background: var(--c-accent); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.methode-card h3 {
    font-family: var(--ff-display); font-size: 1.35rem;
    font-weight: 700; margin-bottom: 12px;
}
.methode-card p { color: #475569; line-height: 1.72; font-size: 0.925rem; }

/* ── WARUM FRACTIONAL ── */
.warum { background: var(--c-bg-dark); }
.warum .section-title { color: var(--c-text-inv); }
.warum .section-sub { color: var(--c-text-muted); }
.comparison-grid {
    display: grid; grid-template-columns: 1fr 1.08fr 1fr;
    gap: 0; margin-top: 48px;
}
.comp-col { background: var(--c-bg-card); padding: 32px 28px; }
.comp-col:first-child { border-radius: 14px 0 0 14px; }
.comp-col:last-child  { border-radius: 0 14px 14px 0; }
.comp-col.is-you {
    background: rgba(46,154,186,0.07);
    border: 2px solid var(--c-accent);
    border-radius: 14px; margin: -2px; position: relative;
}
.comp-col.is-you::before {
    content: 'Ihre Wahl';
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--c-accent); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
    white-space: nowrap; z-index: 2;
}
.comp-hdr {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 20px;
}
.comp-col.is-you .comp-hdr { color: var(--c-accent); }
.comp-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 13px; font-size: 0.855rem;
    color: var(--c-text-muted); line-height: 1.5;
}
.comp-row.good { color: #CBD5E1; }
.ci { flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.ci-yes { color: #22C55E; }
.ci-no  { color: #334155; }
.ci-acc { color: var(--c-accent); }

/* ── KOMPETENZEN ── */
.kompetenzen { background: #fff; }
.komp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.komp-card {
    border: 1px solid var(--c-border-light); border-radius: 14px;
    padding: 36px 30px;
    transition: box-shadow 0.22s, transform 0.22s;
}
.komp-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); transform: translateY(-3px); }
.k-icon {
    width: 46px; height: 46px; background: #F1F5F9;
    border-radius: 11px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 22px;
}
.k-icon svg { width: 20px; height: 20px; stroke: var(--c-accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.komp-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 10px; }
.komp-card p { font-size: 0.87rem; color: #64748B; line-height: 1.72; }

/* ── GRÜNDER ── */
.gruender { background: var(--c-bg-light); }
.gruender-inner {
    display: grid; grid-template-columns: 1fr 1.65fr;
    gap: 72px; align-items: center;
}
.portrait {
    aspect-ratio: 4/5; background: #E2E8F0;
    border-radius: 16px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-ph { text-align: center; color: #94A3B8; font-size: 0.82rem; }
.portrait-ph svg { display: block; margin: 0 auto 8px; }
.gruender-name {
    font-family: var(--ff-display);
    font-size: 2.1rem; font-weight: 700; margin-bottom: 4px;
}
.gruender-role {
    font-size: 0.85rem; color: var(--c-accent);
    font-weight: 600; letter-spacing: 0.04em; margin-bottom: 24px;
}
.gruender-bio { font-size: 0.95rem; color: #475569; line-height: 1.78; margin-bottom: 36px; }
.g-stats { display: flex; gap: 36px; margin-bottom: 28px; }
.gstat-val {
    font-family: var(--ff-display);
    font-size: 1.8rem; font-weight: 700;
    line-height: 1; margin-bottom: 4px;
}
.gstat-val span { color: var(--c-accent); }
.gstat-lbl { font-size: 0.72rem; color: #94A3B8; letter-spacing: 0.04em; }
.branchen-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-blue {
    background: #EAF4F8; border: 1px solid #BFDFE9;
    color: #1F708A; font-size: 0.77rem;
    font-weight: 500; padding: 5px 14px; border-radius: 100px;
}

/* ── TERMIN ── */
.termin { background: var(--c-bg-dark); text-align: center; }
.termin .section-title { color: var(--c-text-inv); max-width: 560px; margin: 0 auto 12px; }
.termin .section-sub { margin: 0 auto 48px; }
.calendly-wrap {
    min-height: 700px; background: var(--c-bg-card);
    border-radius: 16px; border: 1px solid var(--c-border-dark);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.calendly-wrap p { color: var(--c-text-muted); font-size: 0.85rem; }
/* Calendly-Inline-Widget → hier das eigentliche Embed einfügen */
.calendly-inline-widget { width: 100%; min-height: 700px; }

/* ── KONTAKT ── */
.kontakt { background: #fff; }
.kontakt-inner {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 88px; align-items: start;
}
.kontakt-info .section-title { margin-bottom: 10px; }
.kontakt-info > p { color: #64748B; margin-bottom: 36px; line-height: 1.7; }
.k-detail {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px; font-size: 0.9rem;
}
.k-detail a { color: var(--c-text-dark); text-decoration: none; transition: color 0.2s; }
.k-detail a:hover { color: var(--c-accent); }
.k-ico {
    width: 36px; height: 36px; background: #F1F5F9;
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.k-ico svg { width: 15px; height: 15px; stroke: var(--c-accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: #374151; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-input, .form-textarea {
    width: 100%; padding: 11px 15px;
    border: 1px solid var(--c-border-light); border-radius: 8px;
    font-family: var(--ff-body); font-size: 0.88rem;
    color: var(--c-text-dark); background: #F8FAFC; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(46,154,186,0.1);
    background: #fff;
}
.form-textarea { resize: vertical; min-height: 118px; }
.form-submit {
    width: 100%; padding: 13px;
    background: var(--c-text-dark); color: #fff;
    border: none; border-radius: 8px;
    font-family: var(--ff-body); font-size: 0.93rem;
    font-weight: 600; cursor: pointer;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--c-accent); }

/* ── FOOTER ── */
.footer {
    background: var(--c-bg-dark);
    border-top: 1px solid var(--c-border-dark);
    padding: 56px 6% 28px;
}
.footer-inner {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 48px; margin-bottom: 44px;
}
.footer-logo img { height: 36px; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { font-size: 0.78rem; color: var(--c-text-muted); max-width: 220px; line-height: 1.65; }
.fl-group h4 {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 14px;
}
.fl-group a {
    display: block; font-size: 0.83rem; color: var(--c-text-muted);
    text-decoration: none; margin-bottom: 9px; transition: color 0.2s;
}
.fl-group a:hover { color: var(--c-text-inv); }
.footer-bottom {
    border-top: 1px solid var(--c-border-dark); padding-top: 22px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.76rem; color: var(--c-text-muted);
}

/* ── BURGER-MENÜ ── */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-text-inv);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOTION-SYSTEM (Apple-Stil)
   ══════════════════════════════════════════ */

/* Hero: gestaffelte Einblend-Sequenz beim Laden */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}
.hero > * { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero > *:nth-child(1) { animation-delay: 0.10s; }
.hero > *:nth-child(2) { animation-delay: 0.22s; }
.hero > *:nth-child(3) { animation-delay: 0.34s; }
.hero > *:nth-child(4) { animation-delay: 0.46s; }
.hero > *:nth-child(5) { animation-delay: 0.58s; }
.hero > *:nth-child(6) { animation-delay: 0.70s; }

/* Echo-Wellen: langsames, atmendes Pulsieren (Marken-Signatur) */
@keyframes echoPulse {
    from { transform: translateY(-50%) scale(1);    opacity: 1;   }
    to   { transform: translateY(-50%) scale(1.06); opacity: 0.55; }
}

/* Scroll-Reveal: Elemente gleiten sanft ins Bild */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Navigation: wird beim Scrollen kompakter */
.nav { transition: height 0.35s cubic-bezier(0.16,1,0.3,1), background 0.35s, box-shadow 0.35s; }
.nav.is-scrolled {
    height: 56px;
    background: rgba(11,17,32,0.98);
    box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}

/* ── LEISTUNGSPAKETE ── */
.pakete { background: var(--c-bg-light); }
.pakete-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.paket-card {
    background: #fff; border: 1px solid var(--c-border-light);
    border-radius: 14px; padding: 38px 32px;
    display: flex; flex-direction: column;
    position: relative;
}
.paket-card.is-featured { border: 2px solid var(--c-accent); overflow: visible; }
.paket-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--c-accent); color: #fff;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
    white-space: nowrap;
    z-index: 2;
}
.paket-name { font-size: 0.98rem; font-weight: 600; margin-bottom: 6px; }
.paket-preis {
    font-family: var(--ff-display);
    font-size: 2rem; font-weight: 700; line-height: 1.1; margin-bottom: 2px;
}
.paket-preis small { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 400; color: #94A3B8; }
.paket-einheit { font-size: 0.78rem; color: #94A3B8; margin-bottom: 22px; }
.paket-desc { font-size: 0.87rem; color: #475569; line-height: 1.7; margin-bottom: 22px; }
.paket-features { list-style: none; margin-bottom: 28px; flex: 1; }
.paket-features li {
    display: flex; gap: 9px; align-items: flex-start;
    font-size: 0.84rem; color: #475569; margin-bottom: 10px; line-height: 1.5;
}
.paket-features li::before { content: '✓'; color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.paket-cta {
    display: block; text-align: center;
    padding: 12px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    border: 1px solid var(--c-border-light); color: var(--c-text-dark);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.paket-cta:hover { border-color: var(--c-accent); color: var(--c-accent); }
.is-featured .paket-cta { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.is-featured .paket-cta:hover { background: var(--c-accent-dark); }
.pakete-note { font-size: 0.78rem; color: #94A3B8; margin-top: 28px; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
    .nav-burger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--c-bg-dark);
        border-bottom: 1px solid var(--c-border-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 6% 20px;
    }
    .nav-links.is-open { display: flex; }
    .nav-links li a { display: block; padding: 13px 0; font-size: 0.95rem; }
    .nav-links .nav-cta { text-align: center; margin-top: 8px; }
    .pakete-grid { grid-template-columns: 1fr; }
    .paket-card.is-featured { order: -1; }
    .methode-grid, .komp-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; gap: 14px; }
    .comp-col, .comp-col:first-child, .comp-col:last-child { border-radius: 14px; }
    .comp-col.is-you { margin: 14px 0 0; }
    .paket-card.is-featured { margin-top: 14px; }
    .gruender-inner, .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
    .stats-band { flex-wrap: wrap; }
    .stat-item { width: 50%; border-right: none; border-bottom: 1px solid var(--c-border-dark); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .hero h1 { font-size: 2.4rem; }
    .footer-inner { flex-wrap: wrap; }
}

/* ── RECHTSSEITEN (Impressum / Datenschutz) ── */
.legal-main {
    max-width: 780px;
    margin: 0 auto;
    padding: 140px 6% 90px;
}
.legal-main h1 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 36px;
}
.legal-main h2 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 40px 0 14px;
}
.legal-main h3 { font-size: 1rem; font-weight: 600; margin: 26px 0 10px; }
.legal-main p, .legal-main li { font-size: 0.925rem; color: #475569; line-height: 1.78; margin-bottom: 14px; }
.legal-main ul { padding-left: 22px; margin-bottom: 14px; }
.legal-main a { color: var(--c-accent); text-decoration: none; }
.legal-main a:hover { text-decoration: underline; }
.legal-footer {
    border-top: 1px solid var(--c-border-light);
    padding: 26px 6%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: #94A3B8;
}
.legal-footer a { color: #64748B; text-decoration: none; margin-left: 18px; }
.legal-footer a:hover { color: var(--c-accent); }
