/* ============================================================
   NOI Studio — Landingpage
   Pink-Theme · zentrierter Hero · prominente Preiskarte
   ============================================================ */

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

:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F8F8F8;
  --surface:      #FFFFFF;
  --text:         #0A0A0A;
  --text-muted:   #5C5C5C;
  --text-faint:   #8A8A8A;
  --border:       #ECECEC;
  --border-strong:#DADADA;
  --brand:        #F236E0;
  --brand-hover:  #C61CB0;
  --brand-tint:   #FEDDFB;
  --accent:       #C8F708;
  --accent-dark:  #A3CC07;
  --accent-tint:  #ECFAB1;
  --on-brand:     #FFFFFF;
  --ring-shadow:  0 8px 24px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --brand-shadow: 0 6px 24px rgba(242,54,224,0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; border-radius: 999px;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: var(--on-brand); padding: 15px 30px; box-shadow: var(--brand-shadow); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); padding: 14px 28px; border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ── Header ───────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: background 200ms, border-color 200ms;
}
header.scrolled { background: rgba(255,255,255,0.88); border-bottom: 1px solid var(--border); }
.hdr-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 32px; object-fit: contain; }
.logo .divider { width: 1.5px; height: 26px; background: var(--brand); opacity: 0.5; }
.logo .wordmark { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--text); }
.hdr-nav { display: flex; align-items: center; gap: 30px; }
.hdr-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color 150ms; }
.hdr-nav a:hover { color: var(--brand); }

/* ── Hero (centered) ──────────────────────────────────────── */
.hero { background: var(--bg); padding: 70px 0 90px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; display: flex; justify-content: center; align-items: flex-start;
  padding-top: 30px; opacity: 0.32; pointer-events: none;
}
.hero-inner { position: relative; text-align: center; padding-top: 24px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  padding: 8px 8px 8px 16px; border-radius: 999px; background: var(--brand-tint);
}
.hero .badge .label { font-size: 13px; font-weight: 600; color: var(--brand-hover); }
.hero .badge .price { font-size: 13px; font-weight: 700; color: #0A0A0A; background: var(--accent); padding: 4px 11px; border-radius: 999px; }
.hero h1 {
  font-weight: 800; font-size: clamp(40px, 6.2vw, 76px); line-height: 1.04;
  letter-spacing: -0.03em; margin: 0 auto 22px; max-width: 900px; text-wrap: balance;
}
.hero h1 .hl { color: var(--brand); }
.hero .sub {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--text-muted);
  margin: 0 auto 32px; max-width: 620px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 8px; }

.trust { display: inline-flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-item .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item span { font-size: 14.5px; font-weight: 500; color: var(--text-muted); }

/* ── Section heading ──────────────────────────────────────── */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin: 0 0 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; color: var(--text); }
.section-head h2 .hl { color: var(--brand); }

/* ── Value cards ──────────────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 30px 28px; height: 100%; }
.value-card .num { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; color: var(--brand); }
.value-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { font-size: 15px; line-height: 1.6; color: var(--text-muted); }

/* ── Offer / price card ───────────────────────────────────── */
.offer { background: var(--bg-alt); }
.price-card {
  max-width: 760px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: 26px; overflow: hidden;
  box-shadow: var(--ring-shadow); position: relative;
}
.price-card .inner { padding: 44px; }
.offer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.offer-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); background: var(--brand-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.offer-head h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px; }
.offer-head .desc { font-size: 15px; color: var(--text-muted); max-width: 300px; }
.price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-block .amount { font-family: 'Outfit', sans-serif; font-size: 60px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.price-block .unit { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.offer-head .right { text-align: right; flex-shrink: 0; }
.offer-head .right .note { font-size: 13.5px; color: var(--text-faint); margin-top: 8px; }

.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-item .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-item .ci-title { font-size: 15.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.check-item .ci-sub { font-size: 13.5px; color: var(--text-faint); line-height: 1.4; margin-top: 2px; }
.offer-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.offer-cta .reassure { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ── Ablauf ───────────────────────────────────────────────── */
.ablauf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ablauf-step { position: relative; padding: 0 22px 0 0; }
.ablauf-step .head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ablauf-step .num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; flex-shrink: 0; box-shadow: var(--brand-shadow); }
.ablauf-step .line { flex: 1; height: 2px; background: var(--border-strong); }
.ablauf-step .when { font-size: 13px; font-weight: 700; color: var(--accent-dark); letter-spacing: 0.04em; margin-bottom: 6px; }
.ablauf-step h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ablauf-step p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 880px; margin: 0 auto; background: var(--surface); border-radius: 20px; padding: 8px 32px; border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; }
.faq-q .q-text { font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 600; color: var(--text); }
.faq-q .toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; font-weight: 500; transition: all 200ms; }
.faq-item.open .faq-q .toggle { background: var(--brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 300ms ease, opacity 250ms; }
.faq-item.open .faq-a { max-height: 260px; opacity: 1; }
.faq-a p { font-size: 16px; line-height: 1.7; color: var(--text-muted); padding: 0 4px 26px; max-width: 720px; }

/* ── Final CTA / contact ──────────────────────────────────── */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-copy h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; color: var(--text); margin-bottom: 18px; }
.cta-copy h2 .hl { color: var(--brand); }
.cta-copy .lead { font-size: 18px; line-height: 1.65; color: var(--text-muted); margin-bottom: 30px; max-width: 420px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method .ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .ic.mail { background: var(--brand-tint); }
.contact-method .ic.wa { background: var(--accent-tint); }
.contact-method .c-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.contact-method .c-value { font-size: 16px; font-weight: 600; color: var(--text); }

.booking-form { background: var(--surface); border-radius: 20px; padding: 34px; border: 1px solid var(--border); box-shadow: var(--ring-shadow); display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 14px; }
.form-row > div { flex: 1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; padding: 13px 15px; border-radius: 10px;
  border: 1.5px solid var(--border-strong); color: var(--text); background: var(--surface);
  width: 100%; box-sizing: border-box; transition: border-color 150ms, box-shadow 150ms;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent); }
.form-note { font-size: 13px; color: var(--text-faint); text-align: center; }
.form-success { background: var(--surface); border-radius: 20px; padding: 56px 40px; text-align: center; border: 1px solid var(--border); }
.form-success .tick-big { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.form-success p { font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 360px; margin: 0 auto; }
.hidden { display: none !important; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: #0A0A0A; padding: 64px 0 28px; color: #fff; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid #262626; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 34px; }
.footer-logo .divider { width: 1.5px; height: 26px; background: var(--brand); opacity: 0.6; }
.footer-logo .wordmark { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.footer-top .tagline { font-size: 15px; line-height: 1.6; color: #9a9a9a; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #666; margin-bottom: 4px; }
.footer-col a { font-size: 14.5px; color: #bbb; transition: color 150ms; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; }
.footer-bottom .copy { font-size: 13px; color: #666; }
.footer-bottom a { font-size: 13px; color: #888; }
.footer-bottom a:hover { color: #fff; }

/* ── Orbit motif ──────────────────────────────────────────── */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-node { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.orbit-spin { transform-origin: 200px 200px; animation: spin 26s linear infinite; }
.orbit-float { animation: floaty 7s ease-in-out infinite; }
.node-0 { animation: pulse-node 2.4s ease-in-out infinite; }
.node-1 { animation: pulse-node 2.9s ease-in-out infinite; }
.node-2 { animation: pulse-node 3.4s ease-in-out infinite; }
.node-3 { animation: pulse-node 3.9s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .orbit-spin, .orbit-float, .node-0, .node-1, .node-2, .node-3 { animation: none !important; }
}

/* ── Reveal on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .hdr-nav { display: none; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .ablauf-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .ablauf-step .line { display: none; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .wrap, .hdr-inner { padding-left: 20px; padding-right: 20px; }
  .value-grid, .ablauf-grid, .checklist { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 16px; }
  .price-card .inner { padding: 32px 26px; }
  .offer-head { flex-direction: column; }
  .offer-head .right { text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
}
