/* =========================================================
   beautyscout — marketing site styles
   ========================================================= */

:root {
  --bg: #FBF7F4;          /* warm cream background */
  --surface: #FFFFFF;
  --ink: #2A1A22;         /* near-black plum text */
  --muted: #7C6B73;       /* muted mauve-grey */
  --primary: #6D2E46;     /* deep plum */
  --accent: #E0607E;      /* rose accent */
  --accent-soft: #FBE3EA; /* soft rose tint for backgrounds */
  --line: #ECE2DE;        /* hairline borders */
  --radius: 16px;

  --radius-lg: 26px;
  --radius-sm: 11px;
  --maxw: 1160px;
  --shadow-sm: 0 1px 2px rgba(42, 26, 34, 0.04), 0 6px 18px rgba(42, 26, 34, 0.05);
  --shadow-md: 0 10px 30px rgba(42, 26, 34, 0.08), 0 2px 8px rgba(42, 26, 34, 0.05);
  --shadow-lg: 0 30px 70px -20px rgba(109, 46, 70, 0.30), 0 8px 24px rgba(42, 26, 34, 0.08);
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--primary); color: #fff;
  padding: 10px 16px; border-radius: 10px; z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(224, 96, 126, 0.05), transparent 60%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.section-lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.kicker-light { color: var(--accent-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 13px;
  --btn-pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-sm { --btn-pad-y: 10px; --btn-pad-x: 18px; font-size: 0.9rem; }
.btn-lg { --btn-pad-y: 16px; --btn-pad-x: 28px; font-size: 1.02rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(109, 46, 70, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(109, 46, 70, 0.6); background: #5c2539; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #d24c6c);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(224, 96, 126, 0.6);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(224, 96, 126, 0.7); }

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn-ghost svg { transition: transform 0.25s var(--ease); }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 244, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(42,26,34,0.02), 0 8px 24px -16px rgba(42,26,34,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}

.wordmark { display: inline-flex; align-items: center; gap: 9px; }
.wordmark-mark { display: inline-flex; filter: drop-shadow(0 3px 6px rgba(109,46,70,0.25)); }
.wordmark-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.36rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.wordmark-accent { color: var(--accent); }
.wordmark-mark svg { display: block; border-radius: 9px; }

.primary-nav ul { display: flex; gap: 30px; }
.primary-nav a {
  font-weight: 500; font-size: 0.96rem; color: var(--ink);
  position: relative; padding: 6px 0; transition: color 0.2s var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width 0.28s var(--ease);
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 0 auto;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 12px 24px 22px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 13px 6px; font-weight: 500; font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.btn { border: 1px solid transparent; margin-top: 12px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(224,96,126,0.16), transparent 60%),
    radial-gradient(50% 60% at 95% 18%, rgba(109,46,70,0.14), transparent 62%),
    radial-gradient(70% 60% at 50% 110%, rgba(251,227,234,0.55), transparent 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(109,46,70,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--primary); font-weight: 600; font-size: 0.84rem;
  padding: 8px 15px 8px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(224,96,126,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

.footer-made { display: inline-flex; align-items: center; gap: 6px; }
.footer-heart { color: #E0607E; flex: none; }
.swiss-cross { flex: none; border-radius: 4px; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.18)); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(224,96,126,0.22); } 50% { box-shadow: 0 0 0 7px rgba(224,96,126,0.05); } }

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.title-accent {
  background: linear-gradient(120deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
  /* Italic glyphs overhang their box; give the gradient-clip room so the last
     letter on a line (e.g. the "e" in "ohne") isn't cut off. */
  padding-right: 0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub {
  font-size: 1.18rem; color: var(--muted); max-width: 35ch; margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--accent); }

/* ---------- Hero visual mockup ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mock-glow {
  position: absolute; inset: -10% -6% -6% -6%;
  background: radial-gradient(closest-side, rgba(224,96,126,0.28), transparent 75%);
  filter: blur(20px); z-index: 0;
}
.mock-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.mock-booking {
  position: relative; z-index: 1;
  width: min(380px, 100%);
  padding: 22px;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.mock-booking-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mock-avatar {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff; font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; justify-content: center;
}
.mock-salon-name { font-weight: 700; font-size: 0.98rem; }
.mock-salon-meta { font-size: 0.78rem; color: var(--muted); }
.mock-badge {
  margin-left: auto; font-size: 0.68rem; font-weight: 600;
  color: var(--primary); background: var(--accent-soft);
  padding: 5px 10px; border-radius: 999px;
}

.mock-service {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 15px; margin-bottom: 18px;
}
.mock-service-name { font-weight: 600; font-size: 0.9rem; }
.mock-service-meta { font-size: 0.78rem; color: var(--muted); }
.mock-pick {
  font-size: 0.7rem; font-weight: 700; color: #fff;
  background: var(--accent); padding: 5px 11px; border-radius: 999px;
}

.mock-cal-label { font-weight: 700; font-size: 0.84rem; margin-bottom: 10px; }
.mock-week, .mock-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; text-align: center;
}
.mock-week span { font-size: 0.64rem; color: var(--muted); font-weight: 600; }
.mock-days { margin: 6px 0 16px; }
.mock-days span {
  font-size: 0.82rem; font-weight: 500; padding: 7px 0; border-radius: 9px;
}
.mock-days .is-active { background: var(--primary); color: #fff; font-weight: 700; }
.mock-days .is-off { color: #cdbcc3; }

.mock-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }
.mock-slots .slot {
  font-size: 0.78rem; font-weight: 600; text-align: center;
  padding: 8px 0; border-radius: 10px;
  border: 1px solid var(--line); color: var(--ink);
}
.mock-slots .slot-sel {
  background: var(--accent-soft); border-color: var(--accent); color: var(--primary);
}
.mock-confirm {
  width: 100%; border: 0; cursor: default;
  background: var(--primary); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 13px; border-radius: 12px;
}

.mock-mini {
  position: absolute; z-index: 2;
  right: -22px; bottom: -26px; width: 232px; padding: 14px 16px;
  animation: float 7s ease-in-out infinite 0.7s;
}
.mock-mini-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; padding: 6px 0;
}
.mock-mini-row + .mock-mini-row { border-top: 1px solid var(--line); }
.mock-mini-row strong { font-weight: 700; margin-right: 2px; }
.mock-pill { width: 5px; height: 26px; border-radius: 4px; flex-shrink: 0; }
.mock-pill-rose { background: var(--accent); }
.mock-pill-plum { background: var(--primary); }
.mock-pill-soft { background: #e9b8c5; }

.mock-chip {
  position: absolute; z-index: 3;
  left: -26px; top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 15px;
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: float 7s ease-in-out infinite 1.4s;
}

/* ---------- Proof strip ---------- */
.proof-strip {
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px;
  justify-content: center; text-align: center;
}
.proof-label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.proof-items { display: flex; flex-wrap: wrap; gap: 10px 16px; justify-content: center; }
.proof-items a, .proof-items span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--primary); }
.proof-items a { transition: color 0.15s; }
.proof-items a:hover { color: var(--accent); }
.proof-items span[aria-hidden] { color: var(--line); }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-card::before {
  content: ""; position: absolute; left: 30px; right: 30px; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 0 0 3px 3px;
}
.step-num {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 10px 20px -8px rgba(109,46,70,0.5);
}
.step-card h3 { font-size: 1.32rem; }
.step-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Landing-page helpers (Branchen-Seiten) ---------- */
/* .step is an alias of .step-card so landing pages share the same look. */
.step {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.32rem; }
.step p { color: var(--muted); margin-bottom: 0; }
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.container.narrow { max-width: 760px; }
.container.narrow h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.container.narrow p { color: var(--muted); font-size: 1.08rem; }
.crumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--primary); font-weight: 600; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--ink); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }
.branch-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.branch-links a {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: border-color 0.15s, transform 0.15s;
}
.branch-links a:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #e2cfd6; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--primary);
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.06) rotate(-3deg); }
.feature-card h3 { font-size: 1.22rem; }
.feature-card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Warum / compare ---------- */
.warum-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px); align-items: center;
}
.warum-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.warum-points { display: grid; gap: 16px; margin-top: 28px; }
.warum-points li { display: flex; gap: 14px; align-items: flex-start; }
.warum-points strong { font-weight: 700; }
.warum-points div { color: var(--muted); }
.warum-points div strong { color: var(--ink); }
.wp-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
}

.compare {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px 12px 18px;
  box-shadow: var(--shadow-md);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 14px; text-align: left; font-size: 0.92rem; }
.compare-table thead th { padding-top: 18px; padding-bottom: 16px; vertical-align: bottom; }
.compare-brand {
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--primary);
}
.compare-table thead .col-them { color: var(--muted); font-weight: 600; font-size: 0.86rem; }
.compare-table tbody th {
  font-weight: 600; color: var(--ink); font-size: 0.9rem;
}
.compare-table tbody tr { border-top: 1px solid var(--line); }
.compare-table td.col-us, .compare-table th.col-us {
  text-align: center; background: rgba(251,227,234,0.45);
}
.compare-table thead th.col-us { border-radius: 14px 14px 0 0; }
.compare-table tbody tr:last-child td.col-us { border-radius: 0 0 14px 14px; }
.compare-table td.col-them { text-align: center; }
.compare .yes { font-weight: 700; color: var(--primary); }
.compare .no { font-weight: 600; color: #b06; opacity: 0.75; }
.compare .meh { font-weight: 500; color: var(--muted); }
.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: #fff;
}
.cross { color: #cdbcc3; font-weight: 700; }
.compare-foot { font-size: 0.74rem; color: var(--muted); text-align: center; margin: 12px 6px 0; }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 14px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  color: var(--primary); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.cat-card:hover .cat-icon {
  transform: scale(1.05) rotate(3deg);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff; border-color: transparent;
}
.cat-name { font-weight: 600; font-size: 0.96rem; color: var(--ink); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 14px; }
.acc-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.acc-item:hover { border-color: #e2cfd6; }
.acc-item h3 { margin: 0; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; cursor: pointer;
  background: none; border: 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink);
  padding: 22px 24px; line-height: 1.3;
}
.acc-trigger:hover { color: var(--primary); }
.acc-icon {
  position: relative; flex-shrink: 0; width: 22px; height: 22px;
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2.4px; background: var(--accent); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform 0.3s var(--ease);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(0); }
.acc-panel { padding: 0 24px 22px; }
.acc-panel p { margin: 0; color: var(--muted); }
.acc-panel[hidden] { display: none; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(56px, 8vw, 100px) 0;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(224,96,126,0.45), transparent 55%),
    radial-gradient(70% 100% at 0% 100%, rgba(224,96,126,0.25), transparent 55%),
    linear-gradient(135deg, #5c2539, var(--primary));
  color: #fff;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.cta-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.cta-copy p { color: rgba(255,255,255,0.82); margin-bottom: 0; font-size: 1.08rem; max-width: 42ch; }

.signup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.signup-row { display: flex; gap: 10px; }
.signup input {
  flex: 1; min-width: 0;
  font-family: var(--font-body); font-size: 1rem;
  padding: 16px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.96); color: var(--ink);
}
.signup input::placeholder { color: var(--muted); }
.signup input:focus-visible { outline-color: var(--accent-soft); }
.signup-hint { margin: 14px 4px 0; font-size: 0.84rem; color: rgba(255,255,255,0.7); }
.signup-msg { margin: 12px 4px 0; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.signup-msg.is-success { color: #ffe1ea; }
.signup-msg.is-error { color: #ffd2d2; }
.signup input.input-error { border-color: #ff9d9d; box-shadow: 0 0 0 3px rgba(255,120,120,0.3); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 2.4fr;
  gap: clamp(40px, 7vw, 96px); margin-bottom: 40px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-brand .wordmark-footer { margin-bottom: 16px; }
.footer-blurb { color: var(--muted); font-size: 0.96rem; max-width: 34ch; }
.footer-lang { color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-bottom: 0; }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--ink); font-size: 0.96rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-sub { max-width: 46ch; margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 8px; }
  .warum-grid, .cta-inner { grid-template-columns: 1fr; }
  .steps, .feature-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .primary-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-row { flex-direction: column; }
  .signup input, .signup .btn { width: 100%; }
  .mock-mini { right: -8px; bottom: -18px; width: 200px; }
  .mock-chip { left: -6px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px 32px; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.4rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
