/* =============================================
   rocks.optimize — Design System
   Primary: #FFD700 (Neon Gold) — MONO
   ============================================= */

:root {
  --primary: #FFD700;
  --primary-dark: #DDAA00;
  --primary-light: rgba(255,215,0,.1);
  --accent: #FFD700;
  --accent-dark: #DDAA00;
  --gradient: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255,215,0,.06) 0%, rgba(255,215,0,.02) 100%);

  --dark: #000000;
  --surface: #0A0900;
  --text: #CBD5E1;
  --muted: #64748B;
  --border: rgba(255,215,0,.1);
  --bg: #000000;
  --white: #FFFFFF;

  --success: #00FF87;
  --warning: #F59E0B;
  --danger: #FF4560;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(255,215,0,.12);
  --shadow: 0 4px 24px rgba(255,215,0,.2);
  --shadow-lg: 0 12px 48px rgba(255,215,0,.32);

  --container: 1200px;
  --section-gap: 96px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { color: #F1F5F9; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section { padding-block: var(--section-gap); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(255,215,0,.35);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(255,215,0,.5); filter: brightness(1.05); }

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary-light); }

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.18); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.125rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,20,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-rocks { color: #F1F5F9; }
.logo-dot { color: var(--primary); }
.logo-optimize { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-logo { font-size: 1.5rem; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; }
.main-nav a {
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: all .15s;
}
.main-nav a:hover { color: var(--primary); background: var(--primary-light); text-decoration: none; }

.nav-cta { margin-left: .5rem; padding: .6rem 1.25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.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-menu {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { flex-direction: column; gap: .5rem; display: flex; }
.mobile-menu a { display: block; padding: .75rem 1rem; border-radius: var(--radius-sm); color: var(--text); font-weight: 500; }
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.mobile-menu .btn { text-align: center; margin-top: .5rem; }

/* ---- Hero ---- */
.hero {
  background: var(--gradient-subtle);
  padding-block: 80px 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.3);
  padding: .375rem 1rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { margin-bottom: 2rem; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .85rem; color: var(--muted); }
.hero-note strong { color: var(--primary); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 580px; margin-inline: auto; }

/* ---- Hero 2-Spalten: Text | Chef + Speed ---- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

/* Rechte Spalte: Chef mit absolut positioniertem Speed-Panel */
.hero-right {
  position: relative;
  align-self: end;
}
.chef-wrap {
  width: 100%;
}
.chef-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Speed-Panel absolut über dem Foto */
.speed-panel {
  position: absolute;
  bottom: 19.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,215,0,.22);
  border-radius: var(--radius-lg);
}

.speed-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem 1rem;
}

/* PageSpeed Score-Ringe */
.score-ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #0a0900;
  z-index: 1;
}
.score-ring--bad {
  background: conic-gradient(from -90deg, #EF4444 0% 34%, rgba(239,68,68,.12) 34% 100%);
  box-shadow: 0 0 24px rgba(239,68,68,.2);
}
.score-ring--good {
  background: conic-gradient(from -90deg, #FFD700 0% 96%, rgba(255,215,0,.1) 96% 100%);
  box-shadow: 0 0 36px rgba(255,215,0,.5);
}
.score-num {
  position: relative; z-index: 2;
  font-size: 1.75rem; font-weight: 800; line-height: 1;
}
.score-ring--bad  .score-num { color: #EF4444; }
.score-ring--good .score-num { color: #FFD700; }
.score-label-wrap { text-align: center; margin-top: .5rem; }
.score-tag   { display: block; font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.score-title { display: block; font-size: .82rem; font-weight: 700; color: #F1F5F9; }

/* Pfeil-Label zwischen den Ringen */
.speed-arrow-label {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: var(--muted); flex-shrink: 0;
}
.speed-arrow-label i { color: var(--primary); font-size: .95rem; }
.speed-arrow-label span { font-size: .58rem; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }

/* Metriken-Streifen */
.speed-metrics-row {
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,215,0,.12);
  padding: .875rem 1.5rem;
}
.sm-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.sm-val { font-size: 1rem; font-weight: 800; color: var(--success); }
.sm-key { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.sm-sep { width: 1px; height: 28px; background: rgba(255,215,0,.15); flex-shrink: 0; }

/* ---- Problem Section ---- */
.problem-section { background: var(--dark); color: var(--white); }
.problem-section h2 { color: var(--white); }
.problem-section .section-label { background: rgba(255,215,0,.15); color: var(--primary); }
.problem-section .section-header p { color: #94A3B8; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.problem-stat { font-size: 3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: .5rem; }
.problem-card h3 { color: var(--white); margin-bottom: .75rem; }
.problem-card p { color: #94A3B8; margin: 0; }

/* ---- Check Widget ---- */
.check-section { background: var(--bg); }
.check-widget {
  max-width: 680px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.check-widget h2 { margin-bottom: .75rem; }
.check-widget p { color: var(--muted); margin-bottom: 1.75rem; }
.check-form { display: flex; gap: 1rem; }
.check-form input {
  flex: 1;
  padding: .875rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: var(--dark);
  color: var(--text);
}
.check-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,215,0,.15); }
.check-note { font-size: .8rem; color: var(--muted); margin-top: .75rem; }

/* ---- Steps ---- */
.steps-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(255,215,0,.4);
}
.step-card h3 { margin-bottom: .5rem; }
.step-card p { color: var(--muted); }

/* ---- Pricing ---- */
.pricing-section { background: var(--dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: all .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 32px rgba(255,215,0,.2);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1.25rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: .5rem; }
.pricing-price { font-size: 3rem; font-weight: 800; color: #F1F5F9; line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-duration { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-tagline { font-size: 1rem; color: var(--text); margin-bottom: 1.5rem; font-weight: 500; }

.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.feature-icon { color: var(--success); font-size: .95rem; flex-shrink: 0; margin-top: .2rem; line-height: 1; }

.pricing-cta { display: block; text-align: center; }

/* ---- Trust Section ---- */
.trust-section { background: var(--bg); padding-block: 60px; }
.trust-inner { display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; justify-content: center; }
.trust-stat { text-align: center; }
.trust-stat-num { font-size: 2.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-stat-label { font-size: .875rem; color: var(--muted); }

/* ---- Features ---- */
.features-section { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(255,215,0,.3); }
.feature-icon-wrap {
  display: flex; align-items: center;
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--muted); margin: 0; }

/* ---- FAQ ---- */
.faq-section { background: var(--dark); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-list details {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-list details[open] { border-color: var(--primary); box-shadow: 0 0 16px rgba(255,215,0,.15); }
.faq-list summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #F1F5F9;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--muted); }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--surface); border-top: 1px solid rgba(255,215,0,.2); border-bottom: 1px solid rgba(255,215,0,.2); padding-block: 64px; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner-text h2 { color: #F1F5F9; margin-bottom: .5rem; }
.cta-banner-text p { color: var(--muted); margin: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: #94A3B8; padding-block: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-contact { margin-top: 1rem; }
.footer-contact a { color: #94A3B8; font-size: .9rem; }
.footer-contact a:hover { color: var(--white); }
.footer-nav h3 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { color: #94A3B8; font-size: .9rem; transition: color .15s; }
.footer-nav a:hover { color: var(--white); text-decoration: none; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.5rem; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .875rem; }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom a { color: #64748B; font-size: .875rem; }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* ---- Breadcrumb ---- */
.breadcrumb { padding: 1rem 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: .25rem; font-size: .875rem; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: '/'; }
.breadcrumb a { color: var(--primary); }

/* ---- Page Hero (Unterseiten) ---- */
.page-hero { background: var(--surface); padding-block: 64px; border-bottom: 1px solid var(--border); }
.page-hero .section-label { margin-bottom: .75rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.125rem; max-width: 640px; }

/* ---- Content Layout ---- */
.content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.content-main h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p, .content-main li { line-height: 1.75; }
.content-main ul { margin: 1rem 0 1.5rem 1.25rem; list-style: disc; }
.content-main li { margin-bottom: .5rem; }

.sidebar-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}
.sidebar-card.featured { border-color: var(--primary); }
.sidebar-card h3 { margin-bottom: 1rem; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(255,215,0,.25); }
.blog-card-img { aspect-ratio: 16/9; background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--primary); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.blog-card h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-card h2 a { color: #F1F5F9; }
.blog-card h2 a:hover { color: var(--primary); text-decoration: none; }
.blog-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.read-more { font-size: .875rem; font-weight: 600; color: var(--primary); }

/* ---- Lexikon ---- */
.lexikon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.lexikon-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .2s;
}
.lexikon-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.lexikon-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.lexikon-card h3 a { color: #F1F5F9; }
.lexikon-card h3 a:hover { color: var(--primary); text-decoration: none; }
.lexikon-card p { font-size: .875rem; color: var(--muted); margin: 0; }

/* ---- Forms ---- */
.form-section { background: var(--bg); }
.form-wrap { max-width: 640px; margin-inline: auto; }
.form-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.form-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; color: #F1F5F9; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,215,0,.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .75rem; text-align: center; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.alert-success { background: rgba(0,255,135,.1); color: #00FF87; border: 1px solid rgba(0,255,135,.3); }
.alert-error { background: rgba(255,69,96,.1); color: #FF4560; border: 1px solid rgba(255,69,96,.3); }

/* ---- Honeypot ---- */
.hp-field { display: none !important; }

/* ---- Responsive ---- */

/* Verhindert horizontalen Scroll durch überlaufende Elemente */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }

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

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }

  /* Navigation */
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding-top: 48px; }
  .btn { white-space: normal; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { font-size: 1rem; padding: .875rem 1.5rem; }

  /* Layout */
  .features-grid { grid-template-columns: 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Forms */
  .check-form { flex-direction: column; }
  .check-form input, .check-form .btn { width: 100%; }
  .form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-cols-2 { grid-template-columns: 1fr; }

  /* Trust */
  .trust-inner { gap: 1.5rem; }

  /* Blog / Lexikon */
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-gap: 44px; }

  .hero { padding-top: 36px; }
  h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .container { padding-inline: 1rem; }

  .problem-card, .pricing-card, .feature-card { padding: 1.5rem; }
  .lexikon-grid { grid-template-columns: 1fr; }
}
