/* Gemeinsames Layout für alle Rechtsseiten des Creator Compass Funnels. */
@import url('/assets/fonts.css');

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
:root{
  --navy:#0c1c30; --navy2:#1a3354; --ink:#1c2531; --sub:#3a4756; --muted:#6b7785;
  --bg:#eceae3; --paper:#fff; --line:#e3e0d8; --soft:#f7f5f0;
  --err:#b3261e; --ok:#2e7d4f;
  --sans:'DM Sans',system-ui,-apple-system,sans-serif;
  --serif:'DM Serif Display',Georgia,serif;
}
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  font-family:var(--sans); color:var(--ink); background:var(--bg); line-height:1.7;
  -webkit-font-smoothing:antialiased;
  padding:0 16px calc(48px + env(safe-area-inset-bottom));
}
.doc{
  max-width:760px; margin:26px auto 0; background:var(--paper);
  border:1px solid var(--line); border-radius:18px;
  box-shadow:0 20px 60px rgba(20,30,45,.08);
  padding:clamp(26px,5.5vw,52px) clamp(20px,5vw,52px);
}
.brand{ display:flex; align-items:center; gap:9px; color:var(--navy); font-weight:700;
  letter-spacing:.02em; font-size:15px; margin-bottom:26px; text-decoration:none; }
.brand .dot{ width:22px; height:22px; border-radius:7px; background:var(--navy); display:grid; place-items:center; }
.brand .dot svg{ width:13px; height:13px; stroke:#fff; fill:none; stroke-width:2.5; }

h1{ font-family:var(--serif); font-weight:400; color:var(--navy);
  font-size:clamp(27px,6vw,38px); line-height:1.14; letter-spacing:-.01em;
  padding-bottom:16px; border-bottom:2px solid var(--ink); margin-bottom:8px; }
.stand{ color:var(--muted); font-size:13.5px; margin-bottom:30px; }
h2{ font-weight:700; color:var(--navy); font-size:clamp(18px,4.2vw,22px);
  line-height:1.3; margin:34px 0 10px; letter-spacing:-.01em; }
h3{ font-weight:700; color:var(--navy2); font-size:16.5px; margin:22px 0 6px; }
p{ color:var(--sub); font-size:16.5px; margin-bottom:14px; }
p.small{ font-size:14.5px; color:var(--muted); }
a{ color:var(--navy2); }
strong,b{ color:var(--ink); }
ul,ol{ margin:6px 0 16px 22px; }
li{ color:var(--sub); font-size:16px; margin-bottom:7px; }
hr{ border:0; height:1px; background:var(--line); margin:32px 0; }
table{ width:100%; border-collapse:collapse; font-size:14.5px; margin:10px 0 18px; }
th,td{ text-align:left; padding:9px 10px; border-bottom:1px solid var(--line); vertical-align:top; color:var(--sub); }
th{ font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); font-weight:700; }
.box{ background:var(--soft); border:1px solid var(--line); border-radius:13px; padding:18px 20px; margin:16px 0; }
.box p:last-child{ margin-bottom:0; }
.box.warn{ background:#fff8ed; border-color:#f0d89a; }

/* Formulare auf Widerrufs- und Kündigungsseite */
label{ display:block; font-weight:600; color:var(--ink); font-size:13px;
  margin-bottom:6px; text-transform:uppercase; letter-spacing:.05em; }
.field{ margin-bottom:16px; }
input[type=text], input[type=email], textarea, select{
  display:block; width:100%; padding:13px 15px; background:#fafaf8;
  border:1.5px solid var(--line); border-radius:12px;
  font-family:var(--sans); font-size:16px; color:var(--ink); outline:none;
  transition:border-color .15s; -webkit-appearance:none;
}
input:focus, textarea:focus, select:focus{ border-color:var(--navy2); }
textarea{ min-height:92px; resize:vertical; line-height:1.55; }
.opt{ font-weight:400; text-transform:none; letter-spacing:0; color:var(--muted); font-size:12.5px; }
.radios{ display:flex; flex-direction:column; gap:9px; margin-bottom:6px; }
.radios label{ display:flex; align-items:center; gap:11px; font-weight:400; font-size:16px;
  text-transform:none; letter-spacing:0; color:var(--sub); cursor:pointer; margin:0; }
.radios input{ width:18px; height:18px; accent-color:var(--navy); margin:0; }
button.btn{
  display:block; width:100%; padding:16px; background:var(--navy); color:#fff;
  border:0; border-radius:12px; font-family:var(--sans); font-size:16.5px; font-weight:700;
  cursor:pointer; margin-top:8px; transition:background .2s, transform .15s;
  box-shadow:0 10px 26px rgba(12,28,48,.22);
}
button.btn:hover{ background:var(--navy2); transform:translateY(-1px); }
button.btn:disabled{ opacity:.45; cursor:not-allowed; transform:none; }
.msg{ font-size:14.5px; margin-top:12px; display:none; }
.msg.err{ color:var(--err); }
.hidden{ display:none !important; }

/* Gemeinsamer Rechts-Footer */
footer.legal{ width:100%; max-width:760px; margin:0 auto; padding:32px 18px 36px; text-align:center; }
footer.legal nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px 22px; }
footer.legal nav a{ color:#7b8494; font-size:13px; text-decoration:none; }
footer.legal nav a:hover{ color:var(--navy2); }
footer.legal p{ margin:14px 0 0; font-size:11.5px; color:#a3aab6; line-height:1.8; }
footer.legal p a{ color:#a3aab6; text-decoration:none; }
footer.legal p a:hover{ color:var(--navy2); }
footer.legal .dot{ opacity:.5; padding:0 3px; }
@media (max-width:420px){ body{ padding:0 10px 40px; } .doc{ border-radius:14px; } p{ font-size:16px; } }
