/* ============================================================
   Claromind Website, gemeinsames Stylesheet
   Blau und Weiß, eine Schrift (Lexend), große ADHS-freundliche
   Typografie, Touch-first Buttons.
   ============================================================ */
:root{
  --ease: cubic-bezier(.16,1,.3,1);
  --paper:#ffffff;
  --soft:#f4f7fc;
  --ink:#16233d;
  --dim:#5d6b80;
  --faint:#93a0b5;
  --line:#e3e9f2;
  --blue:#2f6fe0;
  --blue-d:#1d3f8f;
  --blue-soft:#eaf1fc;
  --navy:#0e1626;
}
*{ margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; }
body{
  font-family:"Lexend",sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1100px, calc(100% - 48px)); margin:0 auto; }

/* ---------- Nav mit Tabs ---------- */
nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:68px; gap:16px; }
.logo{ font-weight:700; font-size:20px; letter-spacing:-.02em; display:flex; align-items:center; gap:9px; min-height:44px; flex:none; }
.logo i{ width:27px; height:27px; border-radius:8px; background:var(--blue); display:inline-block; }
.nav-links{
  display:flex; align-items:center; gap:2px;
  overflow-x:auto; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nav-links::-webkit-scrollbar{ display:none; }
.nav-links a{
  font-size:15px; font-weight:500; color:var(--dim);
  padding:10px 14px; min-height:44px; display:inline-flex; align-items:center;
  border-radius:10px; white-space:nowrap;
}
.nav-links a:active{ background:var(--blue-soft); color:var(--blue); }
@media (hover:hover){ .nav-links a:hover{ color:var(--ink); } }
.nav-links a.on{ color:var(--blue); font-weight:600; background:var(--blue-soft); }
.nav-cta{
  background:var(--blue); color:#fff !important;
  border-radius:999px; padding:0 22px !important;
  font-weight:600 !important;
  transition:transform .2s var(--ease);
}
.nav-cta:active{ transform:scale(.94); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero{ padding:180px 0 30px; }
.page-hero h1{
  font-size:clamp(40px,7vw,84px);
  font-weight:700; letter-spacing:-.035em; line-height:1.04;
  max-width:16ch;
}
.page-hero .lead{
  margin-top:26px;
  font-size:clamp(18px,2.4vw,23px);
  font-weight:300; color:var(--dim); line-height:1.55;
  max-width:52ch;
}
.blau{ color:var(--blue); }

/* ---------- Sektionen ---------- */
section{ padding:96px 0; position:relative; }
section.soft{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.sec-kick{
  display:inline-block;
  font-size:13px; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--blue);
}
h2{
  margin-top:16px;
  font-size:clamp(32px,5vw,56px);
  font-weight:700; letter-spacing:-.03em; line-height:1.08;
  max-width:20ch;
}
.sec-sub{
  margin-top:22px; color:var(--dim); font-weight:300;
  max-width:52ch; font-size:clamp(17px,2.1vw,20px); line-height:1.6;
}
.sec-sub + .sec-sub{ margin-top:16px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height:56px; padding:0 34px;
  border-radius:999px;
  font-family:inherit; font-size:17px; font-weight:600;
  border:none; cursor:pointer;
  transition:transform .2s var(--ease);
}
.btn:active{ transform:scale(.95); }
.btn-blue{ background:var(--blue); color:#fff; }
.btn-ghost{ background:transparent; color:var(--ink); box-shadow:inset 0 0 0 1.5px var(--line); }
.btn-ghost:active{ background:var(--soft); }

/* ---------- ADHS-Dimensionen ---------- */
.dims{ margin-top:52px; border-top:1px solid var(--line); }
.dim-row{ padding:40px 0; border-bottom:1px solid var(--line); }
.dim-row h3{
  font-size:clamp(26px,3.6vw,40px);
  font-weight:700; letter-spacing:-.025em;
  color:var(--blue-d);
}
.dim-row p{
  margin-top:12px; color:var(--dim); font-weight:300;
  font-size:clamp(17px,2.1vw,20px); max-width:52ch;
}

/* ---------- Features (abwechselnd) ---------- */
.feat{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(36px,7vw,100px);
  align-items:center;
  padding:76px 0;
  border-top:1px solid var(--line);
}
.feat.first{ border-top:none; }
.feat.flip .feat-text{ order:2; }
@media (max-width:820px){
  .feat{ grid-template-columns:1fr; gap:30px; padding:52px 0; }
  .feat.flip .feat-text{ order:0; }
}
.feat-num{ font-size:14px; font-weight:600; letter-spacing:.18em; color:var(--blue); }
.feat h3{
  margin-top:14px;
  font-size:clamp(28px,4vw,46px);
  font-weight:700; letter-spacing:-.03em; line-height:1.1;
}
.feat p{
  margin-top:16px; color:var(--dim); font-weight:300;
  font-size:clamp(17px,2vw,19px); max-width:44ch;
}
.feat-art{
  aspect-ratio:4/3;
  border-radius:24px;
  background:var(--soft);
  border:1px solid var(--line);
  position:relative; overflow:hidden;
  display:grid; place-items:center;
}
.feat-art svg{ width:72%; height:72%; overflow:visible; }
.feat-art .st, .step-art .st{
  fill:none; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:1; stroke-dashoffset:1;
  transition:stroke-dashoffset 1.5s var(--ease);
}
.rev.in .feat-art .st, .rev.in .step-art .st{ stroke-dashoffset:0; }
.rev.in .feat-art .d2, .rev.in .step-art .d2{ transition-delay:.25s; }
.rev.in .feat-art .d3, .rev.in .step-art .d3{ transition-delay:.5s; }
.rev.in .feat-art .d4, .rev.in .step-art .d4{ transition-delay:.75s; }

/* Loop-Mikroanimationen in den Illustrationen (erst nach dem Zeichnen sichtbar) */
.feat-art .float{ animation:floaty 4.5s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-5px); } }
.feat-art .pulse, .step-art .pulse{ opacity:0; }
.rev.in .feat-art .pulse, .rev.in .step-art .pulse{ animation:pulsy 2.8s ease-in-out infinite; }
.rev.in .feat-art .pulse.p2, .rev.in .step-art .pulse.p2{ animation-delay:.9s; }
.rev.in .feat-art .pulse.p3, .rev.in .step-art .pulse.p3{ animation-delay:1.8s; }
@keyframes pulsy{ 0%,100%{ opacity:.15; } 50%{ opacity:.9; } }
.feat-art .drift{ stroke-dasharray:3 9; opacity:0; transition:opacity .6s ease 1s; }
.rev.in .feat-art .drift{ opacity:1; animation:drifty 2.4s linear infinite; }
@keyframes drifty{ to{ stroke-dashoffset:-12; } }
@media (prefers-reduced-motion:reduce){
  .feat-art .float, .rev.in .feat-art .pulse, .rev.in .feat-art .drift{ animation:none; }
  .feat-art .pulse, .feat-art .drift{ opacity:.7; }
}

/* ---------- Große Statement-Sektion ---------- */
.big-statement h2{
  max-width:24ch;
  font-size:clamp(34px,5.6vw,64px);
}
.big-statement .sec-sub{ font-size:clamp(18px,2.3vw,22px); }

/* ---------- Kompakte Zeilen (Außerdem drin) ---------- */
.more{ margin-top:52px; display:grid; grid-template-columns:1fr 1fr; gap:0 clamp(28px,5vw,70px); border-top:1px solid var(--line); }
@media (max-width:720px){ .more{ grid-template-columns:1fr; } }
.more-row{ padding:28px 0; border-bottom:1px solid var(--line); }
.more-row h3{ font-size:clamp(20px,2.4vw,25px); font-weight:600; color:var(--blue-d); letter-spacing:-.015em; }
.more-row p{ margin-top:6px; color:var(--dim); font-weight:300; font-size:16.5px; }

/* ---------- Steps ---------- */
.steps{ margin-top:52px; border-top:1px solid var(--line); counter-reset:step; }
.step{
  display:grid; grid-template-columns:90px 1fr; gap:26px;
  padding:44px 0; border-bottom:1px solid var(--line);
  counter-increment:step;
}
.step.has-art{ grid-template-columns:90px 1fr minmax(170px,230px); align-items:center; }
.step::before{
  content:counter(step, decimal-leading-zero);
  font-size:17px; font-weight:600; color:var(--blue);
  padding-top:8px;
}
.step h3{ font-size:clamp(24px,3.2vw,36px); font-weight:700; letter-spacing:-.025em; line-height:1.15; }
.step p{ margin-top:12px; color:var(--dim); font-weight:300; font-size:clamp(17px,2vw,19px); max-width:52ch; }
.step-art{
  background:var(--paper); border:1px solid var(--line); border-radius:18px;
  padding:18px;
}
section.soft .step-art{ background:var(--paper); }
.step-art svg{ width:100%; height:auto; display:block; overflow:visible; }
@media (max-width:760px){
  .step{ grid-template-columns:52px 1fr; gap:16px; }
  .step.has-art{ grid-template-columns:52px 1fr; }
  .step-art{ grid-column:2; max-width:250px; margin-top:16px; }
}

/* ---------- Pricing ---------- */
.prices{ margin-top:52px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
@media (max-width:860px){ .prices{ grid-template-columns:1fr; max-width:460px; } }
.price{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px 32px;
  display:flex; flex-direction:column;
}
.price.pop{ border:2px solid var(--blue); position:relative; }
.price-flag{
  position:absolute; top:-14px; left:30px;
  background:var(--blue); color:#fff;
  font-size:13px; font-weight:600; letter-spacing:.08em;
  padding:6px 16px; border-radius:999px;
}
.price h3{ font-size:19px; font-weight:600; }
.price-val{ margin-top:10px; font-size:clamp(38px,4vw,48px); font-weight:700; letter-spacing:-.03em; }
.price-val span{ font-size:16px; font-weight:400; color:var(--dim); letter-spacing:0; }
.price ul{ margin:26px 0 30px; list-style:none; display:grid; gap:13px; }
.price li{
  display:flex; gap:11px; align-items:baseline;
  font-size:16px; font-weight:300; color:var(--dim);
}
.price li::before{
  content:""; flex:none; width:7px; height:7px; border-radius:50%;
  background:var(--blue); transform:translateY(-1px);
}
.price .btn{ margin-top:auto; }
.price-note{ margin-top:20px; font-size:14.5px; color:var(--faint); font-weight:300; }

/* ---------- Ehrlich-Liste ---------- */
.honest-list{ margin-top:44px; border-top:1px solid var(--line); }
.honest-row{
  display:flex; align-items:baseline; gap:20px;
  padding:30px 0; border-bottom:1px solid var(--line);
  font-size:clamp(21px,3.2vw,34px); font-weight:700; letter-spacing:-.025em; line-height:1.2;
}
.honest-row span{ color:var(--faint); font-size:14px; font-weight:500; letter-spacing:.12em; flex:none; width:38px; }
.honest-row em{ font-style:normal; color:var(--blue); }

/* ---------- Weiter-Links (große Text-Links zu Unterseiten) ---------- */
.golinks{ margin-top:52px; border-top:1px solid var(--line); }
.golink{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:34px 4px;
  border-bottom:1px solid var(--line);
  font-size:clamp(26px,4.4vw,52px);
  font-weight:700; letter-spacing:-.03em;
  min-height:44px;
  transition:padding .3s var(--ease), color .3s;
}
.golink small{ display:block; font-size:clamp(14px,1.8vw,17px); font-weight:300; color:var(--dim); letter-spacing:0; margin-top:4px; }
.golink svg{ width:clamp(26px,3.4vw,40px); height:auto; flex:none; color:var(--blue); transition:transform .3s var(--ease); }
.golink:active{ color:var(--blue); }
@media (hover:hover){
  .golink:hover{ color:var(--blue); padding-left:14px; }
  .golink:hover svg{ transform:translateX(8px); }
}

/* ---------- CTA-Box ---------- */
.cta-box{
  border-radius:30px;
  padding:clamp(44px,7vw,88px);
  text-align:center;
  background:var(--navy);
  color:#f2f5fa;
  background-image:radial-gradient(60% 80% at 50% 0%, rgba(47,111,224,.3), transparent 70%);
}
.cta-box h2{ margin-left:auto; margin-right:auto; }
.cta-box .sec-sub{ margin-left:auto; margin-right:auto; color:#9aa7bc; }
.cta-box .sec-kick{ color:#7ea6f0; }
.cta-btns{ margin-top:40px; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.cta-box .btn-ghost{ color:#f2f5fa; box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.25); }
.cta-box .btn-ghost:active{ background:rgba(255,255,255,.08); }
.cta-note{ margin-top:22px; font-size:14.5px; color:#7c8aa0; font-weight:300; }

/* ---------- Footer ---------- */
footer{ padding:56px 0 70px; border-top:1px solid var(--line); }
.foot{ display:flex; flex-wrap:wrap; gap:24px; justify-content:space-between; align-items:center; }
.foot-links{ display:flex; flex-wrap:wrap; gap:4px; }
.foot-links a{
  color:var(--dim); font-size:15px; font-weight:400;
  padding:10px 12px; min-height:44px; display:inline-flex; align-items:center; border-radius:10px;
}
.foot-links a:active{ background:var(--blue-soft); color:var(--blue); }
.foot-note{ margin-top:18px; color:var(--faint); font-size:14px; font-weight:300; }

/* ---------- Eltern-Blog (warmes Papier, offene Zeilen) ---------- */
.post-list{ margin-top:52px; border-top:1px solid #e5e1d8; }
.post-row{
  display:flex; align-items:center; justify-content:space-between; gap:28px;
  padding:42px 4px; border-bottom:1px solid #e5e1d8;
  transition:padding .3s var(--ease);
}
.post-meta{
  font-size:13.5px; font-weight:500; letter-spacing:.16em; text-transform:uppercase;
  color:var(--faint);
}
.post-row h2{
  margin-top:10px;
  font-size:clamp(24px,3.6vw,42px);
  line-height:1.12; max-width:26ch;
}
.post-row p{
  margin-top:12px; color:var(--dim); font-weight:300;
  font-size:clamp(16px,2vw,19px); max-width:56ch;
}
.post-row svg{
  width:clamp(26px,3.2vw,38px); height:auto; flex:none; color:var(--blue);
  transition:transform .3s var(--ease);
}
.post-row:active h2{ color:var(--blue); }
@media (hover:hover){
  .post-row:hover{ padding-left:14px; }
  .post-row:hover h2{ color:var(--blue); }
  .post-row:hover svg{ transform:translateX(8px); }
}

/* Blog-Artikel */
.a-hero{ padding:170px 0 10px; }
.a-hero h1{
  margin-top:14px;
  font-size:clamp(34px,5.4vw,62px);
  font-weight:800; letter-spacing:-.035em; line-height:1.06;
  max-width:24ch;
}
.a-hero .lead{
  margin-top:22px;
  font-size:clamp(18px,2.3vw,22px); font-weight:300; color:var(--dim);
  line-height:1.55; max-width:52ch;
}
.a-body{ padding:36px 0 72px; }
.a-col{ max-width:760px; }
.a-col > p{
  margin-top:22px;
  font-size:clamp(17px,2.1vw,19.5px); font-weight:300; color:#3c4658;
  line-height:1.75;
}
.a-col h2{
  margin-top:60px;
  font-size:clamp(23px,3vw,32px); line-height:1.2; max-width:none;
}
.a-col blockquote{
  margin:46px 0 10px; padding:6px 0 6px 26px;
  border-left:3px solid var(--blue);
  font-size:clamp(20px,2.7vw,27px); font-weight:600;
  letter-spacing:-.02em; line-height:1.35; color:var(--ink);
  max-width:30ch;
}
.a-col ul{ margin-top:24px; list-style:none; display:grid; gap:16px; }
.a-col li{
  display:flex; gap:13px;
  font-size:clamp(16.5px,2vw,19px); font-weight:300; color:#3c4658; line-height:1.65;
}
.a-col li::before{
  content:""; flex:none; width:8px; height:8px; border-radius:50%;
  background:var(--blue); margin-top:11px;
}
.a-col li strong{ font-weight:600; color:var(--ink); }
.a-note{
  margin-top:56px; padding-top:24px; border-top:1px solid #e5e1d8;
  font-size:15px; font-weight:300; color:var(--faint); max-width:66ch; line-height:1.6;
}

/* ---------- Reveals ---------- */
.rev{ opacity:0; transform:translateY(26px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.rev.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .rev{ opacity:1; transform:none; transition:none; }
  .rev .feat-art .st{ stroke-dashoffset:0; transition:none; }
  html{ scroll-behavior:auto; }
}
