/* ============================================================================
   Swyze Solo — Marketing / Landingpage · Stylesheet
   Eigenes, modernes CSS. Designsprache angelehnt an /public/styles.css und
   /dashboard/styles.css:
     neutrale Flächen, ein Akzent (Gold #c8a24a), grosszügige Radien,
     weiche Schatten, .btn / .btn--primary / .btn--ghost, Brand-Mark.
   Mobile-first. Wird auch von den /legal/-Seiten genutzt.
   ========================================================================== */

:root {
  --c-primary: #111111;
  --c-bg: #ffffff;
  --c-surface: #f6f6f5;
  --c-surface-2: #ffffff;
  --c-text: #16181d;
  --c-muted: #6b7280;
  --c-accent: #c8a24a;
  --c-accent-soft: #f3ead3;
  --c-line: #e7e7e4;
  --c-line-2: #efefec;
  --c-ink: #0c0d10;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --btn-radius: 10px;

  --shadow-sm: 0 1px 2px rgba(16, 18, 22, 0.06), 0 1px 3px rgba(16, 18, 22, 0.05);
  --shadow-md: 0 6px 22px rgba(16, 18, 22, 0.1);
  --shadow-lg: 0 18px 50px rgba(16, 18, 22, 0.18);

  --font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1080px;
  --maxw-narrow: 760px;
  --pad: 20px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.12;
}

a {
  color: var(--c-primary);
  text-underline-offset: 2px;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.muted {
  color: var(--c-muted);
}

.center {
  text-align: center;
}

/* ===================== Brand-Mark (wie Dashboard) ===================== */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--c-text);
}
.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
  align-self: center;
}
.brand-word {
  font-size: 1.25rem;
}
.brand-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
}

/* ===================== Buttons ===================== */
.btn {
  --bg: var(--c-surface-2);
  --fg: var(--c-text);
  --bd: var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid var(--bd);
  border-radius: var(--btn-radius);
  background: var(--bg);
  color: var(--fg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease,
    filter 0.15s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  --bg: var(--c-primary);
  --fg: #fff;
  --bd: var(--c-primary);
}
.btn--primary:hover {
  filter: brightness(1.12);
}
.btn--ghost {
  --bg: transparent;
  --fg: var(--c-text);
  --bd: var(--c-line);
}
.btn--ghost:hover {
  background: var(--c-surface);
}
.btn--accent {
  --bg: var(--c-accent);
  --fg: #fff;
  --bd: var(--c-accent);
}
.btn--accent:hover {
  filter: brightness(1.06);
}
.btn--lg {
  padding: 15px 28px;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}

/* ===================== Layout-Grundgerüst ===================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.wrap--narrow {
  max-width: var(--maxw-narrow);
}

.section {
  padding: 64px 0;
}
.section__head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
}
.section__lead {
  margin-top: 12px;
  color: var(--c-muted);
  font-size: 1.05rem;
}

/* ===================== Top-Nav ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--c-bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 62px;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  color: var(--c-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a:hover {
  color: var(--c-text);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__login {
  display: none;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--c-accent) 26%, transparent),
    transparent 70%
  );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 64px;
  display: grid;
  gap: 40px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-accent-soft);
  color: #8a6d1f;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent);
}
.hero__title {
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  font-weight: 800;
}
.hero__title em {
  font-style: normal;
  color: var(--c-accent);
}
.hero__sub {
  margin-top: 18px;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--c-muted);
  max-width: 46ch;
}
.hero__cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--c-muted);
  font-size: 0.9rem;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust .ok {
  color: var(--c-accent);
  font-weight: 800;
}

/* Telefon-Mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  width: 100%;
  max-width: 300px;
  background: var(--c-ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.phone__screen {
  background: var(--c-bg);
  border-radius: 28px;
  overflow: hidden;
}
.phone__hero {
  background: linear-gradient(135deg, #1c1d22, #3a2f17);
  color: #fff;
  padding: 28px 20px 22px;
}
.phone__hero h3 {
  font-size: 1.3rem;
  font-weight: 800;
}
.phone__hero p {
  margin-top: 4px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.phone__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #1c1d22;
  font-size: 0.72rem;
  font-weight: 800;
}
.phone__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.phone__svc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-surface);
}
.phone__svc strong {
  font-size: 0.92rem;
}
.phone__svc small {
  display: block;
  color: var(--c-muted);
  font-size: 0.74rem;
}
.phone__svc b {
  font-size: 0.95rem;
}
.phone__cta {
  margin-top: 4px;
  text-align: center;
  background: var(--c-primary);
  color: #fff;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ===================== Logos / Branchen-Streifen ===================== */
.industries {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  padding: 30px 0;
}
.industries__label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.industries__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}
.chip span {
  font-size: 1.05rem;
}

/* ===================== Feature-Bloecke ===================== */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--c-accent) 45%, var(--c-line));
}
.feature__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--c-accent-soft);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature__title {
  font-size: 1.12rem;
  font-weight: 800;
}
.feature__text {
  margin-top: 8px;
  color: var(--c-muted);
  font-size: 0.97rem;
}
.feature__soon {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--c-line-2);
  color: var(--c-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===================== How it works ===================== */
.steps {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}
.step-card p {
  margin-top: 6px;
  color: var(--c-muted);
  font-size: 0.95rem;
}

/* ===================== Pricing-Teaser ===================== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.plan {
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan--featured {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  position: relative;
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #1c1d22;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan__name {
  font-size: 1.15rem;
  font-weight: 800;
}
.plan__price {
  margin: 8px 0 2px;
  font-size: 1.7rem;
  font-weight: 800;
}
.plan__price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
}
.plan__note {
  color: var(--c-muted);
  font-size: 0.9rem;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.plan__list li::before {
  content: "✓";
  color: var(--c-accent);
  font-weight: 900;
  flex: 0 0 auto;
  line-height: 1.5;
}
.plan .btn {
  margin-top: auto;
}
.pricing__foot {
  text-align: center;
  margin-top: 24px;
  color: var(--c-muted);
  font-size: 0.92rem;
}

/* ===================== CTA-Band ===================== */
.cta-band {
  background: var(--c-ink);
  color: #fff;
}
.cta-band__inner {
  padding: 56px 0;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 800;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
}
.cta-band .btn--ghost {
  --fg: #fff;
  --bd: rgba(255, 255, 255, 0.3);
}
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===================== Footer ===================== */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  padding: 48px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer__about {
  max-width: 36ch;
}
.footer__about p {
  margin-top: 12px;
  color: var(--c-muted);
  font-size: 0.92rem;
}
.footer__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__col a {
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer__col a:hover {
  color: var(--c-accent);
}
.footer__bar {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--c-muted);
  font-size: 0.86rem;
}

/* ===================== Legal-Seiten ===================== */
.legal {
  padding: 48px 0 72px;
}
.legal__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}
.legal__head h1 {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  font-weight: 800;
}
.legal__updated {
  margin-top: 8px;
  color: var(--c-muted);
  font-size: 0.9rem;
}
.legal__notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--c-accent-soft);
  border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 32px;
  color: #6b521a;
  font-size: 0.95rem;
}
.legal__notice strong {
  color: #5a4513;
}
.legal__notice .ic {
  font-size: 1.2rem;
  line-height: 1.4;
}
.legal h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 34px 0 12px;
}
.legal h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0 8px;
}
.legal p {
  margin: 0 0 14px;
}
.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 7px;
}
.legal a {
  color: var(--c-accent);
}
.legal .placeholder {
  background: var(--c-line-2);
  border-radius: 4px;
  padding: 1px 7px;
  font-style: normal;
  color: var(--c-muted);
  font-weight: 600;
  white-space: nowrap;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 0.92rem;
}
.legal__table th,
.legal__table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  vertical-align: top;
}
.legal__table th {
  background: var(--c-surface);
  font-weight: 700;
}
.legal__toc {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.legal__toc h2 {
  font-size: 1rem;
  margin: 0 0 10px;
}
.legal__toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--c-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.legal__back:hover {
  color: var(--c-text);
}

/* ===================== Desktop-Feinschliff ===================== */
@media (min-width: 720px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 880px) {
  .nav__links {
    display: flex;
  }
  .nav__login {
    display: inline-flex;
  }
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 72px 0 84px;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
  .section {
    padding: 84px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
