/* was — Websites as a Service · slashworks
   Landingpage-Stylesheet */

:root {
  --ink: #0f1b34;
  --ink-2: #334262;
  --muted: #5b6b88;
  --line: #e5e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f7fc;
  --bg-hero: #0f1b34;
  --brand: #2f5bff;
  --brand-dark: #1e40e0;
  --brand-soft: #eaf0ff;
  --accent: #ff7a45;
  --accent-dark: #e85f2a;
  --ok: #12a150;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -25px rgba(15, 27, 52, .35);
  --shadow-sm: 0 8px 24px -16px rgba(15, 27, 52, .4);
  --maxw: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(255, 122, 69, .8); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f0f3fb; }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand .logo { width: 38px; height: 38px; border-radius: 11px; }
.brand small { display: block; font-weight: 500; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a.navlink { color: var(--ink-2); font-weight: 500; font-size: .96rem; }
.nav a.navlink:hover { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 84px 0 90px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; font-size: .84rem; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); line-height: 1.06; letter-spacing: -.03em; margin-bottom: 20px; }
.hero h1 .hl { color: var(--brand); }
.hero .lead { font-size: 1.2rem; color: var(--ink-2); max-width: 33ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero-note { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .92rem; }
.hero-note b { color: var(--ink); }

.price-badge {
  position: absolute; right: -14px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow); border: 1px solid var(--line); text-align: left;
}
.price-badge .amt { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.price-badge .amt span { color: var(--accent); }
.price-badge .sub { font-size: .82rem; color: var(--muted); }

.hero-media { position: relative; }
.hero-media img { border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.hero-blob { position: absolute; inset: -40px -30px auto auto; width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%, rgba(47, 91, 255, .22), transparent 70%); filter: blur(10px); z-index: 0; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; padding: 22px 24px; }
.trust span { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); font-weight: 600; font-size: .95rem; }
.trust svg { width: 19px; height: 19px; color: var(--ok); flex: none; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow { color: var(--brand); font-weight: 700; font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: -.025em; line-height: 1.1; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

.soft { background: var(--bg-soft); }

/* Für wen — audience chips */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.aud-card .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); margin-bottom: 16px; font-size: 1.4rem; }
.aud-card h3 { font-size: 1.12rem; margin-bottom: 6px; letter-spacing: -.01em; }
.aud-card p { color: var(--muted); font-size: .96rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; }
.step h3 { font-size: 1.14rem; margin-bottom: 7px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .98rem; }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.feature .ficon { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.feature .ficon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; letter-spacing: -.01em; }
.feature p { color: var(--muted); font-size: .98rem; }

/* Social split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media img { border-radius: 20px; box-shadow: var(--shadow); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); letter-spacing: -.025em; line-height: 1.12; margin-bottom: 16px; }
.split .lead { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 24px; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 1.02rem; }
.check-list li svg { width: 22px; height: 22px; color: var(--ok); flex: none; margin-top: 1px; }
.chan { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px 7px 12px; font-weight: 600; font-size: .9rem; margin: 22px 10px 0 0; box-shadow: var(--shadow-sm); }
.chan .cdot { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 800; }

/* Hosting note */
.hosting-note { display: flex; gap: 16px; align-items: flex-start; max-width: 860px; margin: 30px auto 0; background: var(--brand-soft); border: 1px solid #d5e0ff; border-radius: var(--radius); padding: 22px 26px; }
.hosting-note .hn-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: #fff; display: grid; place-items: center; color: var(--brand); box-shadow: var(--shadow-sm); }
.hosting-note .hn-ico svg { width: 22px; height: 22px; }
.hosting-note b { color: var(--ink); }
.hosting-note p { color: var(--ink-2); font-size: 1rem; margin: 0; }

/* Pricing */
.price-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: stretch; max-width: 920px; margin: 0 auto; }
.price-card { background: var(--bg-hero); color: #fff; border-radius: 24px; padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.price-card::after { content: ""; position: absolute; inset: -60px -60px auto auto; width: 260px; height: 260px; background: radial-gradient(circle, rgba(47, 91, 255, .45), transparent 65%); }
.price-card .tag { position: relative; display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 22px; }
.price-card h3 { position: relative; font-size: 1.3rem; margin-bottom: 4px; }
.price-card .psub { position: relative; color: #b9c4e0; margin-bottom: 26px; }
.riskfree { position: relative; display: flex; gap: 10px; align-items: center; background: rgba(110, 231, 168, .12); border: 1px solid rgba(110, 231, 168, .35); border-radius: 12px; padding: 12px 15px; margin-bottom: 24px; color: #d9f7e6; font-size: .96rem; }
.riskfree svg { width: 20px; height: 20px; color: #6ee7a8; flex: none; }
.riskfree b { color: #fff; }
.price-figs { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 8px 30px; padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.fig .big { font-size: 2.9rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.fig .lbl { color: #b9c4e0; font-size: .9rem; margin-top: 7px; }
.fig .plus { color: var(--accent); font-weight: 800; font-size: 1.6rem; align-self: center; }
.price-incl { position: relative; list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.price-incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: #e7ecf8; }
.price-incl li svg { width: 21px; height: 21px; color: #6ee7a8; flex: none; margin-top: 1px; }
.price-card .btn { position: relative; width: 100%; justify-content: center; }
.price-aside { display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.aside-card h4 { font-size: 1.05rem; margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.aside-card h4 svg { width: 20px; height: 20px; color: var(--brand); }
.aside-card p { color: var(--muted); font-size: .96rem; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 1.08rem; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 20px; margin-top: -4px; }

/* CTA band */
.cta-band { background: var(--bg-hero); color: #fff; border-radius: 28px; padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto auto -80px -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255, 122, 69, .35), transparent 65%); }
.cta-band::after { content: ""; position: absolute; inset: -80px -60px auto auto; width: 320px; height: 320px; background: radial-gradient(circle, rgba(47, 91, 255, .4), transparent 65%); }
.cta-band h2 { position: relative; font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: -.025em; margin-bottom: 14px; }
.cta-band p { position: relative; color: #c4cee6; font-size: 1.12rem; max-width: 46ch; margin: 0 auto 30px; }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 40px; color: var(--muted); font-size: .94rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: .95rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-cols h5 { color: var(--ink); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-cols a, .footer-cols span { display: block; color: var(--muted); margin-bottom: 9px; }
.footer-cols a:hover { color: var(--brand); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.legal h1 { font-size: 2rem; letter-spacing: -.02em; margin-bottom: 8px; }
.legal h2 { font-size: 1.15rem; margin: 32px 0 8px; }
.legal p { color: var(--ink-2); margin-bottom: 8px; }
.legal .ph { color: var(--accent-dark); font-family: ui-monospace, monospace; font-size: .92em; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.legal .back { display: inline-block; margin-top: 40px; color: var(--muted); }
.legal .back:hover { color: var(--brand); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 70px; }
  .hero .lead { max-width: none; }
  .price-badge { right: 12px; bottom: 12px; }
  .audience, .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-media { order: -1; }
  .price-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  section { padding: 60px 0; }
  .nav { display: none; }
  .audience, .features, .steps { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; }
  .price-card { padding: 30px 26px; }
  .cta-band { padding: 46px 24px; }
  .footer-cols { gap: 36px; }
}
