/* =========================================================
   IT-Forma – Premium Clean Design System
   Apple-inspirierter, ruhiger, hochwertiger Look
   Datei: style.css
   ========================================================= */

/* -----------------------------
   Reset
----------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: #1d1d1f;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(0, 113, 227, 0.16);
}

/* -----------------------------
   Variables
----------------------------- */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-soft-2: #fbfbfd;
  --bg-dark: #000000;
  --bg-dark-soft: #101010;

  --text: #1d1d1f;
  --text-soft: #515154;
  --text-muted: #6e6e73;
  --text-light: #f5f5f7;

  --border: rgba(0, 0, 0, 0.08);
  --border-soft: rgba(0, 0, 0, 0.055);

  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-soft: rgba(0, 113, 227, 0.09);

  --green: #34c759;
  --purple: #af52de;
  --orange: #ff9500;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.08);

  --container: 1120px;
  --container-wide: 1320px;

  --header-height: 104px;
}

/* -----------------------------
   Accessibility
----------------------------- */

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  box-shadow: var(--shadow-soft);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* -----------------------------
   Containers
----------------------------- */

.container,
.container-wide {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 40px), var(--container-wide));
}

.max-760 {
  max-width: 760px;
}

.mx-auto {
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

/* -----------------------------
   Typography
----------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  color: var(--text);
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.4vw, 3.85rem);
  line-height: 1.05;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.9vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
}

h3,
.h3 {
  margin-bottom: 12px;
  font-size: clamp(1.14rem, 1.35vw, 1.42rem);
  line-height: 1.18;
  font-weight: 700;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 1.25vw, 1.22rem);
  line-height: 1.58;
  letter-spacing: -0.012em;
}

.section-subtitle {
  max-width: 820px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.62;
}

.section-subtitle.mx-auto {
  margin-inline: auto;
}

.muted {
  color: var(--text-muted);
}

/* -----------------------------
   Header / Navigation
----------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(18, 18, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1380px);
  height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-width: 116px;
  color: #ffffff;
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.site-header .brand span,
.site-footer .footer-brand span {
  display: none;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(255, 255, 255, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-inline: auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 210px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

body.nav-open .mobile-toggle span {
  background: transparent;
}

body.nav-open .mobile-toggle span::before {
  top: 0;
  transform: rotate(45deg);
  background: #ffffff;
}

body.nav-open .mobile-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #ffffff;
}

/* -----------------------------
   Buttons
----------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.014em;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.20);
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-secondary {
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
}

.site-header .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.btn-light {
  color: #000000;
  background: #ffffff;
}

.btn-lg {
  min-height: 46px;
  padding-inline: 24px;
  font-size: 0.98rem;
}

.btn-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* -----------------------------
   Breadcrumbs / Labels
----------------------------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--blue);
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-eyebrow {
  margin-bottom: 14px;
}

/* -----------------------------
   Hero
----------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 7.2vw, 112px) 0 clamp(62px, 6.5vw, 96px);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.08), transparent 33%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.55fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}

.hero-content {
  max-width: 920px;
}

.hero-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-card p {
  margin-bottom: 24px;
}

.kicker-line {
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.proof-pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(0, 0, 0, 0.045);
  border: 1px solid rgba(0, 0, 0, 0.055);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.045);
}

.metric-value {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.metric-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* -----------------------------
   Sections
----------------------------- */

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-sm {
  padding: clamp(44px, 5vw, 72px) 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-dark {
  background: #000000;
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark .h3 {
  color: #ffffff;
}

.section-dark p,
.section-dark .section-subtitle,
.section-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .section-eyebrow {
  color: #8ab4ff;
}

/* -----------------------------
   Grids
----------------------------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

/* -----------------------------
   Cards
----------------------------- */

.card,
.price-card,
.split-panel,
.visual-panel,
.cta-soft {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.card {
  padding: 26px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.11);
  box-shadow: var(--shadow-soft);
}

.card-xl {
  padding: clamp(26px, 3vw, 34px);
}

.card p:last-child,
.split-panel p:last-child,
.visual-panel p:last-child {
  margin-bottom: 0;
}

.section-dark .card {
  background: #151515;
  border-color: rgba(255, 255, 255, 0.10);
}

.section-dark .card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 650;
  letter-spacing: -0.012em;
}

.card-link::after {
  content: "›";
  margin-left: 6px;
  font-size: 1.2em;
  line-height: 1;
}

/* -----------------------------
   Icons
----------------------------- */

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--blue);
  background: var(--blue-soft);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.icon-box.green {
  color: var(--green);
  background: rgba(52, 199, 89, 0.11);
}

.icon-box.purple {
  color: var(--purple);
  background: rgba(175, 82, 222, 0.11);
}

.icon-box.orange {
  color: var(--orange);
  background: rgba(255, 149, 0, 0.12);
}

/* -----------------------------
   Lists
----------------------------- */

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.section-dark .check-list li::before {
  border-color: #8ab4ff;
}

/* -----------------------------
   Process
----------------------------- */

.process-grid {
  counter-reset: process;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

/* -----------------------------
   Visual Panels
----------------------------- */

.visual-panel {
  padding: 12px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  box-shadow: var(--shadow-soft);
}

.visual-panel-inner {
  min-height: 360px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.12), transparent 32%),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.055);
}

/* -----------------------------
   CTA
----------------------------- */

.cta-soft {
  padding: clamp(28px, 4vw, 46px);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.cta-band {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  color: #ffffff;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 113, 227, 0.36), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.13), transparent 28%);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band p {
  margin-bottom: 0;
  opacity: 0.78;
}

/* -----------------------------
   Pricing
----------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: clamp(28px, 3vw, 36px);
  box-shadow: none;
}

.price-card.featured {
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 24px 70px rgba(0, 113, 227, 0.11);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  margin: 24px 0;
}

.price-main {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.price-note {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Preise-Seite: hochwertigere Paketkarten */

.pricing-grid-clean {
  max-width: 1120px;
  margin-inline: auto;
  align-items: stretch;
}

.price-card-clean {
  display: flex;
  flex-direction: column;
  min-height: 545px;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
}

.price-card-clean.featured {
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow: 0 18px 48px rgba(0, 113, 227, 0.09);
}

.price-card-head {
  min-height: 155px;
}

.price-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #6e6e73;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card-clean h3 {
  margin-bottom: 14px;
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.price-card-clean p {
  max-width: 290px;
  margin-bottom: 0;
  color: #5f5f64;
  font-size: 0.98rem;
  line-height: 1.6;
}

.price-card-clean .price-badge {
  width: fit-content;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  font-size: 0.76rem;
}

.price-box {
  margin: 18px 0 24px;
}

.price-box .price-main {
  display: block;
  color: #1d1d1f;
  font-size: 1.68rem;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.price-box .price-note {
  display: block;
  margin-top: 8px;
  color: #6e6e73;
  font-size: 0.92rem;
}

.price-list {
  gap: 10px;
  margin-top: 0;
  margin-bottom: 28px;
}

.price-list li {
  font-size: 0.94rem;
  line-height: 1.42;
}

.price-action {
  margin-top: auto;
}

.price-action .btn {
  min-height: 40px;
  padding-inline: 18px;
}

/* -----------------------------
   FAQ
----------------------------- */

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.015em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--text-muted);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-content {
  padding: 0 22px 20px;
}

.faq-content p {
  margin-bottom: 0;
}

/* -----------------------------
   Forms
----------------------------- */

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.10);
}

/* -----------------------------
   Tags / Case Cards
----------------------------- */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.case-card:hover {
  transform: translateY(-2px);
}

.case-image {
  min-height: 180px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.055);
}

.case-card:nth-child(1) .case-image {
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #f6efe7 0%, #e8d7c4 100%);
}

.case-card:nth-child(2) .case-image {
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #f2f0ff 0%, #dad7ef 100%);
}

.case-card:nth-child(3) .case-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #eef7ee 0%, #d7e8d7 100%);
}

.case-content {
  padding: 26px;
}

/* -----------------------------
   Footer
----------------------------- */

.site-footer {
  padding: 58px 0 30px;
  background: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(130px, 0.65fr));
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #111111;
  border-radius: 18px;
  padding: 8px;
}

.footer-text {
  max-width: 380px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.075);
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* -----------------------------
   Reveal Animation
----------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* -----------------------------
   Responsive
----------------------------- */

@media (max-width: 1180px) {
  .brand {
    min-width: auto;
  }

  .nav-actions {
    min-width: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-inline: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(18, 18, 20, 0.98);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    height: 44px;
    justify-content: center;
    font-size: 0.98rem;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 720px;
  }

  .price-card-clean {
    min-height: auto;
  }

  .price-card-head {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 84px;
  }

  .container,
  .container-wide,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 54px 0 62px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.58rem, 6.5vw, 2.18rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .grid-3,
  .grid-4,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-metric-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .card-xl,
  .split-panel,
  .cta-soft {
    padding: 22px;
  }

  .price-card-clean {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .price-action .btn {
    width: auto;
  }

  .cta-band-inner {
    padding: 28px;
  }

  .btn-row {
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container,
  .container-wide,
  .nav-shell {
    width: min(calc(100% - 22px), var(--container));
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .hero-proof {
    gap: 6px;
  }

  .proof-pill,
  .tag {
    font-size: 0.78rem;
  }
}

/* =========================================================
   Nur Ueberschriften kleiner
   Sonst keine Aenderungen
   ========================================================= */

h1,
[class*="-hero-copy"] h1,
.hero-copy h1,
.hero-content h1 {
  font-size: clamp(1.85rem, 3.55vw, 3.2rem) !important;
}

h2,
[class*="-copy"] h2,
[class*="-head"] h2,
[class*="-section-head"] h2,
[class*="-card"] h2,
.section h2,
.cta-band h2 {
  font-size: clamp(1.48rem, 2.45vw, 2.22rem) !important;
}

h3,
.h3,
[class*="-card"] h3,
[class*="-item"] h3,
[class*="-step"] h3,
.card h3,
.price-card-clean h3 {
  font-size: clamp(1rem, 1.12vw, 1.18rem) !important;
}

@media (max-width: 720px) {
  h1,
  [class*="-hero-copy"] h1,
  .hero-copy h1,
  .hero-content h1 {
    font-size: clamp(1.72rem, 7.7vw, 2.45rem) !important;
  }

  h2,
  [class*="-copy"] h2,
  [class*="-head"] h2,
  [class*="-section-head"] h2,
  [class*="-card"] h2,
  .section h2,
  .cta-band h2 {
    font-size: clamp(1.36rem, 5.7vw, 1.92rem) !important;
  }

  h3,
  .h3,
  [class*="-card"] h3,
  [class*="-item"] h3,
  [class*="-step"] h3,
  .card h3,
  .price-card-clean h3 {
    font-size: clamp(0.98rem, 4vw, 1.12rem) !important;
  }
}
