/*
Theme Name: Chili VoiceTool
Theme URI: https://chili-voice.com
Author: Design by Ellie
Author URI: https://designbyellie.me
Description: Landing-Page-Theme für das Chili VoiceTool von Chili Colectivo. Statische One-Page-Site, alle Assets im Theme enthalten.
Version: 1.3.0
Requires PHP: 7.4
License: Proprietary – für Chili-Colectivo SL
Text Domain: chili-voicetool
*/

/* ============================================================
   CHILI VOICETOOL — Landing Page
   Local development version
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette — sampled from mockup */
  --plum-deep:   #402234;
  --plum:        #5a3349;
  --plum-mid:    #4d2b40;
  --plum-card:   #573049;
  --cream:       #faf5ec;
  --cream-card:  #fffdf8;
  --yellow:      #fdbf0d;
  --yellow-deep: #d9a300;
  --red:         #e63329;
  --green:       #3aa757;
  --ink:         #2e1a28;
  --body:        #5c4a56;
  --on-dark:     #ffffff;

  /* Type */
  --font-display: 'Aleo', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --r:    12px;
  --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

body, h1, h2, h3, p, figure { margin: 0; }

html { overflow-x: hidden; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(253,191,13,.3);
}
.btn--yellow:hover { box-shadow: 0 7px 22px rgba(253,191,13,.45); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  width: 100%;
  justify-content: center;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__logo img { height: 132px; width: auto; }

.nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 26px;
}

.nav a {
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .88;
  transition: opacity .2s;
}
.nav a:hover { opacity: 1; }

/* Burger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: linear-gradient(150deg, #5e3650 0%, #513048 46%, #45283a 100%);
  padding: 132px 0 64px;
  overflow: hidden;
  isolation: isolate;
}

/* Warm radial sheen behind the flames — sampled from the mockup:
   plum lifts from #502f41 at the edges to ~#734f5d near the chilis */
.hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -6%;
  right: -4%;
  width: 74%;
  height: 118%;
  pointer-events: none;
  background:
    radial-gradient(closest-side ellipse at 50% 46%,
      rgba(255, 176, 96, .30) 0%,
      rgba(206, 122, 108, .22) 34%,
      rgba(132, 84, 104, .13) 58%,
      rgba(80, 47, 65, 0)     80%);
}

/* Tighter, hotter core right behind the flame tips */
.hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 6%;
  right: 6%;
  width: 46%;
  height: 84%;
  pointer-events: none;
  background:
    radial-gradient(closest-side circle at 50% 44%,
      rgba(255, 152, 52, .24) 0%,
      rgba(255, 126, 44, .12) 42%,
      rgba(255, 110, 40, 0)   74%);
}

.hero > .container { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 15px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.9vw, 3.95rem);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -.035em;
}

.hero h1 .accent {
  color: var(--yellow);
  display: block;
  position: relative;
  width: fit-content;
}

.hero h1 .accent .scribble {
  position: absolute;
  left: -1%;
  bottom: -22px;
  width: 103%;
  height: 20px;
  overflow: visible;
  pointer-events: none;
}
.hero h1 .accent .scribble path {
  fill: var(--yellow);
  stroke: none;
}

.hero__sub {
  color: #fff;
  font-size: 1rem;
  line-height: 1.62;
  margin: 34px 0 28px;
  max-width: 430px;
  opacity: .96;
}

/* Feature pills */

.pills {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pill { display: flex; align-items: center; gap: 11px; }

.pill__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.pill__icon--green  { background: var(--green); }
.pill__icon--purple { background: #7b4fa8; }

.pill__svg { width: 20px; height: 20px; color: #fff; }
.btn__svg  { width: 17px; height: 17px; }

.pill__text strong {
  display: block;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
}
.pill__text span {
  color: var(--on-dark);
  font-size: .74rem;
  opacity: .72;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */

.hero__visual { position: relative; }

.hero__chilis {
  width: 78%;
  max-width: none;
  margin-left: auto;
  margin-right: -3%;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 46px rgba(0,0,0,.4));
}

/* Product screenshot in the hero */
.hero__shot {
  position: relative;
  z-index: 3;
  display: block;
  width: 87%;
  margin: -110px -3% 0 auto;
  transform: translateX(25px);
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}

/* ============================================================
   VOICETOOL WIDGET (unused since product screenshot swap —
   kept for potential reuse of the animated concept)
   Colours sampled directly from Patrik's widget mockup:
   chrome #232126 · header #42253d · body #151517
   field #151717 · CTA #35af70 · ring: conic teal→blue→purple
   ============================================================ */

.vt {
  position: relative;
  z-index: 3;
  margin: -170px 0 0 23.1%;
  width: 81%;
  max-width: none;
  border-radius: 12px;
  overflow: hidden;
  background: #151517;
  box-shadow:
    0 26px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06);
  text-align: left;
}

/* Browser chrome */
.vt__chrome {
  background: #232126;
  padding: 9px 12px;
  display: flex;
  gap: 6px;
}
.vt__dot { width: 9px; height: 9px; border-radius: 50%; }
.vt__dot--r { background: #ff5f57; }
.vt__dot--y { background: #febc2e; }
.vt__dot--g { background: #28c840; }

/* Purple title bar */
.vt__bar {
  background: #42253d;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vt__mark { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.vt__title {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

.vt__body { padding: 24px 24px 21px; }

/* Mic + conic ring */
.vt__mic {
  position: relative;
  width: 141px;
  height: 141px;
  margin: 4px auto 0;
  display: grid;
  place-items: center;
}

.vt__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    #6d99d2, #7674c9, #9b56db, #9939dd, #904ad7,
    #7170cc, #6098d6, #55b9cd, #5ae0cd, #67f0b1,
    #62eabf, #55c1d0, #6d99d2);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  animation: vt-spin 6s linear infinite;
}

.vt__ring--pulse {
  animation: vt-spin 6s linear infinite, vt-pulse 2.4s ease-in-out infinite;
  filter: blur(7px);
  opacity: .5;
}

.vt__disc {
  position: relative;
  z-index: 2;
  width: 99px;
  height: 99px;
  border-radius: 50%;
  /* soft falloff so the disc melts into the ring glow instead of a hard edge */
  background:
    radial-gradient(circle at 50% 46%,
      #202024 0%,
      #191919 52%,
      #141416 78%,
      #121214 92%,
      rgba(18,18,20,.86) 100%);
  box-shadow:
    inset 0 0 22px rgba(0,0,0,.85),
    0 0 26px 10px rgba(18,18,20,.9);
  display: grid;
  place-items: center;
  color: #fff;
}
.vt__disc svg { width: 40px; height: 40px; }

@keyframes vt-spin { to { transform: rotate(360deg); } }
@keyframes vt-pulse {
  0%, 100% { opacity: .32; transform: scale(1); }
  50%      { opacity: .62; transform: scale(1.07); }
}

.vt__status {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: .94rem;
  margin: 15px 0 18px;
}
.vt__dots i { animation: vt-blink 1.4s infinite both; font-style: normal; }
.vt__dots i:nth-child(2) { animation-delay: .2s; }
.vt__dots i:nth-child(3) { animation-delay: .4s; }
@keyframes vt-blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

/* Field grid */
.vt__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 10px;
  margin-bottom: 13px;
}
.vt__label {
  display: block;
  color: #c9c4cc;
  font-size: .7rem;
  margin-bottom: 4px;
}
.vt__select {
  background: #151717;
  border: 1px solid #2c2c30;
  border-radius: 7px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: #e9e6ec;
  font-size: .76rem;
}
.vt__select em { font-style: normal; color: #8d8894; font-size: .8rem; }

/* CTA */
.vt__cta {
  background: #35af70;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  text-align: center;
  padding: 12px;
  border-radius: 7px;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .vt__ring, .vt__ring--pulse, .vt__dots i { animation: none; }
}

.hero__note {
  position: absolute;
  right: -6px;
  top: 56%;
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 600;
  transform: rotate(-7deg);
  z-index: 4;
  text-align: center;
  line-height: 1.35;
  pointer-events: none;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  background: var(--cream);
  padding: 76px 0 84px;
  position: relative;
  overflow-x: clip;   /* clip sideways only — lets the chili bleed up into the hero */
}

.features__inner {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  grid-template-areas:
    "mascot head"
    "mascot cards";
  gap: 0 18px;
  align-items: center;
  align-content: center;
}
.features__body { display: contents; }
.features__mascot { grid-area: mascot; align-self: center; }
.features__inner .section-title { grid-area: head; align-self: end; }
.feature-grid { grid-area: cards; }

.features__mascot {
  margin-left: 0;
  justify-self: center;
  width: clamp(330px, 29vw, 420px);
  max-width: none;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.25));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.9vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.section-title .scribble {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 130px;
  height: 15px;
  overflow: visible;
  pointer-events: none;
}
.section-title .scribble path {
  fill: var(--red);
  stroke: none;
}

.section-title .hl { color: var(--red); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,.05);
}

.feature {
  background: var(--cream-card);
  padding: 26px 22px;
  text-align: center;
}
.feature .feature__svg { margin-inline: auto; }

.feature__icon { margin-bottom: 14px; }

.feature__svg { width: 36px; height: 36px; display: block; }
.feature__icon--green  { color: var(--green); }
.feature__icon--yellow { color: var(--yellow-deep); }
.feature__icon--red    { color: var(--red); }

.feature h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: .82rem;
  color: var(--body);
  line-height: 1.55;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  background: linear-gradient(165deg, var(--plum-mid) 0%, var(--plum-deep) 100%);
  padding: 86px 0 92px;
  position: relative;
  overflow-x: clip;
}

.pricing .section-title {
  color: #fff;
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.pricing .section-title .scribble { left: 50%; transform: translateX(-50%); }
.pricing__lead { text-align: center; }
.pricing > .container > .section-title,
.pricing__lead {
  margin-left: auto; margin-right: auto;
}
.pricing > .container { max-width: 1180px; }
.pricing .section-title .hl { color: var(--yellow); }

.pricing__lead {
  color: #fff;
  font-size: .9rem;
  opacity: 1;
  margin-bottom: 44px;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 10px;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  transform: translateX(clamp(10px, 2vw, 30px));
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}
.plan {
  display: flex;
  flex-direction: column;
}
.plan .btn { margin-top: auto; }

.plan {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
}

.plan--featured {
  border-color: var(--yellow);
  background: rgba(253,191,13,.07);
  padding-top: 32px;
}

.plan--lizenz {
  background: var(--yellow);
  border-color: var(--yellow-deep);
}
.plan--lizenz .plan__term,
.plan--lizenz .plan__price,
.plan--lizenz .plan__cycle { color: var(--ink); opacity: 1; }
.plan--lizenz .plan__list li { color: var(--ink); opacity: .85; }
.plan--lizenz .plan__list li::before { color: #1e7a3a; }
.plan--lizenz .btn--ghost {
  background: var(--ink);
  color: var(--yellow);
  border-color: transparent;
}
.plan--lizenz .btn--ghost:hover { background: #43273a; }

.plan__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 5px 16px;
  border-radius: 6px;
  text-transform: uppercase;
}

.plan__term {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.plan--featured .plan__term { color: var(--yellow); }

.plan__price {
  font-family: var(--font-display);
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}
.plan__price sup {
  font-size: .95rem;
  font-weight: 600;
  margin-top: 4px;
}

.plan__cycle {
  color: var(--on-dark);
  font-size: .78rem;
  opacity: .7;
  margin: 6px 0 20px;
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
  display: grid;
  gap: 9px;
}

.plan__list li {
  color: var(--on-dark);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}

.plan__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.guarantee {
  width: clamp(300px, 27vw, 390px);
  max-width: none;
  margin-left: -44px;
  margin-top: 0;
  margin-bottom: 6px;
  margin-right: 0;
  align-self: end;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.35));
}


/* ============================================================
   SO FUNKTIONIERT'S
   ============================================================ */

.steps {
  background: var(--cream);
  padding: 86px 0 90px;
  position: relative;
  overflow-x: clip;
}

.steps__lead {
  color: var(--body);
  font-size: .9rem;
  margin-bottom: 42px;
}

.steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  background: var(--cream-card);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 26px 22px 24px;
  position: relative;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}

.step__icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
}

/* Placeholder until Patrik supplies the third icon */
.step__icon--todo {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  border: 2px dashed rgba(0,0,0,.2);
  color: var(--body);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  filter: none;
}

.step__todo {
  background: #fff6d6;
  border-left: 3px solid var(--yellow);
  padding: 8px 10px;
  border-radius: 0 6px 6px 0;
  font-size: .76rem !important;
  color: #6b5410 !important;
  margin-top: 10px;
}
.step__todo::before { content: '✏️ '; }

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.step p {
  font-size: .85rem;
  color: var(--body);
  line-height: 1.55;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: linear-gradient(165deg, var(--plum-mid) 0%, var(--plum-deep) 100%);
  padding: 86px 0 92px;
  position: relative;
  overflow-x: clip;
}

.faq .section-title { color: #fff; }

.faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 38px;
  align-items: center;
}

.faq__mascot {
  width: clamp(280px, 24vw, 350px);
  max-width: none;
  margin-left: -10px;
  justify-self: start;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.35));
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  padding: 15px 44px 15px 18px;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  position: relative;
  list-style: none;
  transition: background .18s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: rgba(255,255,255,.05); }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after {
  content: '−';
}

.faq__a {
  padding: 0 18px 16px;
}

.faq__a p {
  font-size: .85rem;
  color: var(--on-dark);
  line-height: 1.6;
  opacity: .88;
}
.faq__a p + p { margin-top: 9px; }

.faq__a code,
.step p code {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 1px 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
}
.step p code {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.12);
}

/* Placeholder markers — deliberately loud so they can't ship by accident */
.faq__todo {
  background: rgba(253,191,13,.12);
  border-left: 3px solid var(--yellow);
  padding: 9px 11px;
  border-radius: 0 6px 6px 0;
  font-size: .8rem !important;
  color: #f7d789 !important;
  opacity: 1 !important;
}
.faq__todo::before {
  content: '✏️ ';
}

@media (max-width: 980px) {
  .steps__list { grid-template-columns: 1fr; }
  .faq__main { display: contents; }
  .faq__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "mascot" "head" "list";
    justify-items: center;
    gap: 4px;
    align-items: center;
  }
  .faq__mascot { grid-area: mascot; width: 180px; min-width: 0; margin: 0; justify-self: center; }
  .faq .section-title {
    grid-area: head; margin: 8px 0 22px;
    display: block; width: fit-content; text-align: center;
  }
  .faq .section-title .scribble { left: 50%; transform: translateX(-50%); }
  .faq__list { grid-area: list; width: 100%; }
  .steps { text-align: center; }
  .steps .section-title { display: block; width: fit-content; margin-inline: auto; }
  .steps .section-title .scribble { left: 50%; transform: translateX(-50%); }
  .step__icon { margin-inline: auto; }
  .step__icon--todo { margin-inline: auto; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust {
  background: var(--cream);
  padding: 56px 0 60px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid rgba(0,0,0,.08);
}
.trust__item:last-child { border-right: none; }

.trust__icon { flex-shrink: 0; }

.trust__svg { width: 38px; height: 38px; display: block; }
.trust__icon--purple { color: #7b4fa8; }
.trust__icon--green  { color: var(--green); }
.trust__icon--yellow { color: var(--yellow-deep); }
.trust__icon--red    { color: var(--red); }

.trust__item strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.trust__item p {
  font-size: .75rem;
  color: var(--body);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--plum-mid);
  padding: 54px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer__logo img { height: 150px; width: auto; }

.footer__center { text-align: center; }

.footer__center h2 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer__center p {
  color: var(--on-dark);
  font-size: .85rem;
  opacity: .85;
}

.footer__legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 30px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--on-dark);
  font-size: .72rem;
}

.footer__company {
  font-style: normal;
  line-height: 1.7;
  opacity: .62;
  text-align: left;
}
.footer__company strong {
  display: block;
  font-weight: 700;
  opacity: .9;
}
.footer__company a { text-decoration: underline; }
.footer__company a:hover { opacity: 1; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  opacity: .6;
  align-items: center;
}
.footer__links a:hover { opacity: 1; text-decoration: underline; }

.footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--on-dark);
  transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }

/* Nach-oben-Button */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: #ffd044; }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   SUBPAGES (Impressum, AGB, Datenschutz, Hilfe, Partner, Kontakt)
   ============================================================ */

.page-hero {
  background: linear-gradient(150deg, #5e3650 0%, #513048 46%, #45283a 100%);
  padding: 158px 0 0;
  overflow: hidden;
}
.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  min-height: 150px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -.02em;
  padding-bottom: 44px;
}
.page-hero__img {
  width: clamp(150px, 16vw, 220px);
  margin-bottom: -6px;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));
}

/* Grosser Seiten-Hero (Kontakt, Hilfe, Partner) — Homepage-Sprache */
.page-hero--big {
  padding: 150px 0 54px;
  position: relative;
  isolation: isolate;
}
/* warmer Glow hinter dem Charakter – wie im Home-Hero */
.page-hero--big::before {
  content: '';
  position: absolute;
  z-index: 0;
  right: 6%;
  bottom: -14%;
  width: 46%;
  height: 125%;
  pointer-events: none;
  background: radial-gradient(closest-side ellipse at 50% 62%,
    rgba(255,176,96,.26) 0%,
    rgba(206,122,108,.17) 40%,
    rgba(80,47,65,0) 74%);
}
.page-hero--big .page-hero__inner {
  position: relative;
  z-index: 1;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: 0;
}
.page-hero--big .page-hero__text { padding-bottom: 78px; }
.page-hero--big h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  padding-bottom: 0;
  position: relative;
  width: fit-content;
}
.page-hero--big h1 .scribble {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
}
.page-hero--big h1 .scribble path { fill: var(--yellow); stroke: none; }
.page-hero--big .eyebrow { margin-bottom: 22px; }

.page-hero__sub {
  color: #fff;
  opacity: .95;
  font-size: 1rem;
  line-height: 1.62;
  max-width: 440px;
  margin: 36px 0 26px;
}
.page-hero--big .page-hero__img {
  width: clamp(230px, 25vw, 350px);
  margin-bottom: 0;
}

.page-body {
  background: var(--cream);
  padding: 56px 0 80px;
}
.page-content {
  max-width: 780px;
  font-size: .97rem;
  line-height: 1.75;
  color: var(--ink);
}
.page-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  margin: 2em 0 .6em;
}
.page-content h3 { font-size: 1.1rem; margin: 1.6em 0 .5em; }
.page-content p + p { margin-top: 1em; }
.page-content ul, .page-content ol { padding-left: 1.3em; margin: 1em 0; }
.page-content a { color: var(--red); text-decoration: underline; }

/* Rechtstexte (Impressum / Datenschutz / AGB) */
.legal-doc .legal-section { margin-top: 1.8em; }
.legal-doc .legal-section:first-child { margin-top: 0; }
.legal-doc .legal-updated {
  margin-top: 2.4em;
  font-size: .9rem;
  opacity: .7;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.1);
  font-size: .92rem;
}
.legal-nav a { color: var(--ink); text-decoration: underline; }
.page-hero .page-hero__sub {
  margin-top: .75rem;
  max-width: 36rem;
  opacity: .85;
}

/* Formulare auf Unterseiten (z. B. Contact Form 7) */
.page-content input[type="text"],
.page-content input[type="email"],
.page-content input[type="tel"],
.page-content textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  margin: 5px 0 16px;
}
.page-content textarea { min-height: 160px; resize: vertical; }
.page-content input:focus,
.page-content textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253,191,13,.25);
}
.page-content input[type="submit"],
.page-content button[type="submit"] {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  padding: 15px 30px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.page-content input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(253,191,13,.45);
}

@media (max-width: 980px) {
  .footer__legal { justify-content: center; }
  .footer__company { text-align: center; }
  .footer__links { justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero__inner  { grid-template-columns: 1fr; text-align: center; }
  .hero__sub    { margin-inline: auto; }
  .pills, .hero__cta { justify-content: center; }
  .hero h1 .accent { margin-inline: auto; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header__cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    margin: 6px 0 0;
    background: #3a1f31;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 22px 50px rgba(0,0,0,.5);
    z-index: 200;
  }
  body.nav-open .nav { display: flex; }
  .nav a {
    padding: 13px 14px;
    border-radius: 9px;
    font-size: .9rem;
  }
  .nav a:hover { background: rgba(255,255,255,.07); }
  .site-header { position: absolute; }
  .header__inner { position: relative; }
  .hero__chilis { margin-inline: auto; max-width: 400px; }
  .hero__note { display: none; }
  .vt { width: 100%; max-width: 360px; margin: -70px auto 0; }
  .hero__shot { width: 100%; max-width: 380px; margin: -44px auto 0; transform: none; }
  .header__logo img { height: 92px; }
  .header__inner { justify-content: space-between; }

  .features__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "mascot" "head" "cards";
    justify-items: center;
    gap: 4px;
  }
  .features__mascot { width: 180px; min-width: 0; margin: 0; }
  .features__inner .section-title {
    margin: 8px 0 22px; text-align: center;
    display: block; width: fit-content;
  }
  .features__inner .section-title .scribble { left: 50%; transform: translateX(-50%); }
  .feature-grid { grid-template-columns: 1fr; margin-top: 14px; }

  .pricing__layout { display: contents; }
  .pricing > .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "head" "lead" "thumb" "plans";
    justify-items: center;
    gap: 6px;
    align-items: center;
  }
    .pricing > .container > .section-title {
    grid-area: head; transform: none; margin: 0;
    display: block; width: fit-content; justify-self: center; text-align: center;
  }
  .pricing > .container > .section-title .scribble { left: 50%; transform: translateX(-50%); }
  .pricing__lead { grid-area: lead; transform: none; margin: 0; text-align: center; }
  .plans { grid-area: plans; grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; width: 100%; }
  .plan__list { justify-items: center; text-align: center; }
  .plan__list li { justify-content: center; }
  .guarantee { grid-area: thumb; width: 190px; min-width: 0; max-width: none; margin: 10px 0 6px; transform: none; align-self: auto; justify-self: center; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust__item { border-right: none; padding: 0; }

  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 980px) {
  .page-hero { padding-top: 128px; }
  .page-hero--big { padding-bottom: 42px; }
  .page-hero__inner {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .page-hero__img { width: 160px; margin-bottom: 0; }
  .page-hero h1 { padding-bottom: 30px; }
  .page-body { padding: 40px 0 60px; }

  .page-hero--big .page-hero__inner { flex-direction: column; align-items: center; }
  .page-hero--big .page-hero__text {
    padding-bottom: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-hero--big h1 { padding-bottom: 0; }
  .page-hero--big h1 .scribble { left: 50%; transform: translateX(-50%); }
  .page-hero__sub { margin: 30px auto 22px; }
  .page-hero--big .page-hero__img { width: 220px; }
  .page-hero--big::before {
    right: 50%;
    transform: translateX(50%);
    width: 88%;
    height: 62%;
    bottom: -8%;
  }
}

@media (max-width: 560px) {
  .hero { padding: 130px 0 80px; }
  .trust__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
