/* ==========================================================================
   hobbala.io Landing Page
   Inspired by: InvoiceSensei Editorial / Clean Fintech
   Brand: Orange (#FF7A18) + Inter
   ========================================================================== */

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

:root {
  --ink: #1A1A2E;
  --ink-light: #2D2D44;
  --ink-mid: #3D3D56;

  --brand: #FF7A18;
  --brand-dim: #E26100;
  --brand-light: #FFB561;
  --brand-glow: rgba(255, 122, 24, 0.10);
  --brand-glow-strong: rgba(255, 122, 24, 0.18);

  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --soft-gray: #F4F4F6;
  --border-light: #E8E8EC;
  --border-mid: #D4D4DA;

  --text-primary: #1A1A2E;
  --text-secondary: #5A5A72;
  --text-muted: #8A8A9E;
  --text-dim: #AEAEC0;

  --font-display: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Inter-700.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand { color: var(--brand); }
.brand-bold { color: var(--brand); font-weight: 600; }

/* ── Reveal Animations ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-light);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--brand);
}

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--brand {
  background: var(--brand);
  color: white;
}

.btn--brand:hover {
  background: var(--brand-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 122, 24, 0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
}

.btn--outline:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.825rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--soft-gray) 0%, var(--white) 100%);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 24px 72px;
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 24, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero__content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.20);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-dim);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero__title .brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* ── Hero Visual: Deployment Flow Demo ─────────────────────────────────── */
.hero__visual {
  margin-top: 64px;
  width: 100%;
  max-width: 960px;
  position: relative;
  z-index: 1;
}

.deploy-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.deploy-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 170px;
}

.deploy-card--branch {
  border-color: rgba(255, 122, 24, 0.25);
}

.deploy-card--pipeline {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--ink-mid);
}

.deploy-card--live {
  border-color: rgba(40, 200, 64, 0.35);
  box-shadow: 0 4px 24px rgba(40, 200, 64, 0.12);
}

.deploy-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.deploy-card--pipeline .deploy-card__label {
  color: rgba(255, 255, 255, 0.5);
}

.deploy-card__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.deploy-card--pipeline .deploy-card__label-dot {
  background: #FEBC2E;
  animation: pulse-dot 1.4s infinite;
}

.deploy-card--live .deploy-card__label-dot {
  background: #28C840;
  box-shadow: 0 0 12px rgba(40, 200, 64, 0.6);
}

.deploy-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.deploy-card--pipeline .deploy-card__title {
  color: var(--white);
}

.deploy-card__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.deploy-card--pipeline .deploy-card__meta {
  color: rgba(255, 255, 255, 0.4);
}

.deploy-card__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deploy-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.deploy-card__row span:first-child {
  color: var(--text-muted);
}

.deploy-card--pipeline .deploy-card__row span:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.deploy-card--pipeline .deploy-card__row span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

.deploy-card__row .ok { color: #28C840; }
.deploy-card__row .running { color: #FEBC2E; }

.deploy-card__progress {
  margin-top: 14px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.deploy-card__progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  width: 60%;
  animation: progress-pulse 2.4s infinite var(--ease-out-expo);
  border-radius: 4px;
}

@keyframes progress-pulse {
  0% { width: 10%; }
  60% { width: 92%; }
  100% { width: 10%; }
}

.deploy-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 500;
  position: relative;
}

.deploy-arrow::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transform: translateY(-50%);
}

.deploy-arrow span {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--soft-gray) 0%, var(--white) 100%);
  padding: 0 6px;
}

/* ── Section Shared ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ── How it Works ──────────────────────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background: var(--soft-gray);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.how-it-works .section-title .brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 32px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.step__content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step__connector {
  display: flex;
  align-items: center;
  padding: 0;
  align-self: center;
}

.connector-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.35), transparent);
}

/* ── Features ──────────────────────────────────────────────────────────── */
.features {
  padding: 120px 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 122, 24, 0.25);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-glow);
  border: 1px solid rgba(255, 122, 24, 0.15);
  border-radius: 12px;
  color: var(--brand);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-card__list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-card__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.feature-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
}

/* ── Showcase ──────────────────────────────────────────────────────────── */
.showcase {
  padding: 80px 0 120px;
  background: var(--white);
}

.showcase__frame {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  max-width: 1080px;
  margin: 0 auto;
}

.showcase__frame img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

.showcase__badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--brand);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.30);
}

/* ── Integrations (eingebettet in Features-Section) ──────────────────────── */
.integrations {
  margin-top: 80px;
  padding-top: 16px;
  text-align: center;
}

.integrations__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 24px;
}

.integrations__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 48px;
}

.integrations__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
}

.integrations__logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.integrations__logo img {
  height: 100%;
  width: auto;
  max-height: 32px;
  object-fit: contain;
  display: block;
}

/* WordPress: W-Mark + Wortmarke daneben, damit es nicht generisch wirkt */
.integrations__logo--wp .integrations__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* "+ weitere"-Chip am Ende der Logo-Reihe */
.integrations__logo--more {
  padding: 6px 16px;
  background: var(--white);
  border: 1px dashed var(--border-mid);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  height: auto;
  opacity: 1;
}

.integrations__logo--more:hover {
  transform: none;
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .integrations__inner {
    gap: 20px 32px;
  }

  .integrations__logo {
    height: 26px;
  }

  .integrations__logo img {
    max-height: 26px;
  }
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--brand);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out-expo), color 0.3s;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq__answer {
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
  max-height: 0;
  padding: 0 0;
}

.faq__answer[hidden] {
  display: block;
  max-height: 0;
  padding: 0 0;
}

.faq__item--open .faq__answer {
  max-height: 360px;
  padding: 0 0 20px;
}

.faq__answer p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Newsletter ────────────────────────────────────────────────────────── */
.newsletter {
  padding: 100px 0;
  background: var(--soft-gray);
}

.newsletter__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.newsletter__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.newsletter__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.newsletter__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.newsletter__field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter__field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}

.newsletter__captcha {
  display: flex;
  justify-content: center;
}

.newsletter__hp {
  display: none;
}

.newsletter__submit {
  align-self: center;
  margin-top: 8px;
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--white);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 122, 24, 0.10), transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

.final-cta__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.final-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--white);
  color: var(--text-primary);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--brand);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--brand);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav.mobile-open {
    background: var(--white);
  }

  .nav.mobile-open .nav__inner {
    flex-wrap: wrap;
  }

  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 16px 0;
    gap: 16px;
    order: 3;
  }

  .nav.mobile-open .nav__actions {
    display: flex;
    width: 100%;
    padding-bottom: 16px;
    order: 4;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-divider {
    display: none;
  }

  .deploy-demo {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
  }

  .deploy-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    transform: rotate(90deg);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__row {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ══════════════════════════════════════════════════════════════════════════ */

.legal-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
  background: var(--white);
}

.legal-page__content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-page__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.2;
}

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page__content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-page__content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
