:root {
  color-scheme: dark;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --page-background:
    radial-gradient(circle at 50% -8%, rgba(255, 122, 44, 0.34), transparent 16rem),
    radial-gradient(circle at 10% 14%, rgba(255, 100, 38, 0.26), transparent 22rem),
    radial-gradient(circle at 84% 12%, rgba(255, 180, 87, 0.18), transparent 18rem),
    linear-gradient(180deg, #140905 0%, #050303 100%);
  --bg: #120b08;
  --bg-deep: #070403;
  --surface: rgba(28, 16, 10, 0.72);
  --surface-strong: rgba(20, 12, 8, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 157, 96, 0.14);
  --line-strong: rgba(255, 157, 96, 0.28);
  --text: #fff7f1;
  --text-soft: rgba(255, 247, 241, 0.76);
  --text-dim: rgba(255, 247, 241, 0.5);
  --blue-1: #ff6a18;
  --blue-2: #ff8f2b;
  --blue-3: #ffb457;
  --warm-1: #ff5a2a;
  --warm-2: #ffd0bf;
  --success: #8ef5c5;
  --gradient-primary: linear-gradient(135deg, #ff5b1f 0%, #ff7e1f 48%, #ffb457 100%);
  --gradient-warm: linear-gradient(135deg, #ff5a2a 0%, #ffd0bf 100%);
  --shadow-lg: 0 35px 100px rgba(2, 8, 20, 0.5);
  --shadow-md: 0 20px 60px rgba(2, 8, 20, 0.32);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1120px;
  --space-section: clamp(5rem, 7.5vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
  background-color: #140905;
  background: var(--page-background);
  color-scheme: dark;
  overflow-x: hidden;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: #140905;
  background: var(--page-background);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(1, 1, 1, 0.76) 0%,
      rgba(1, 1, 1, 0.52) 8%,
      rgba(4, 3, 3, 0.26) 18%,
      rgba(8, 6, 5, 0.08) 28%,
      rgba(8, 6, 5, 0) 40%
    ),
    linear-gradient(
      0deg,
      rgba(1, 1, 1, 0.72) 0%,
      rgba(1, 1, 1, 0.46) 8%,
      rgba(4, 3, 3, 0.2) 18%,
      rgba(8, 6, 5, 0.06) 28%,
      rgba(8, 6, 5, 0) 40%
    );
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 157, 96, 0.16);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(31, 18, 12, 0.96), rgba(16, 10, 7, 0.94)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.08), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(255, 157, 96, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(255, 106, 24, 0.12);
}

select,
option {
  color: var(--text);
}

option {
  color: #140c08;
  background: #fff1e8;
}

textarea {
  resize: vertical;
  min-height: 7.8rem;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.ambient-one {
  width: 24rem;
  height: 24rem;
  top: 6rem;
  left: -7rem;
  background: rgba(255, 98, 34, 0.24);
}

.ambient-two {
  width: 26rem;
  height: 26rem;
  top: 32rem;
  right: -8rem;
  background: rgba(255, 183, 95, 0.14);
}

.site-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 0;
  overflow-x: clip;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
canvas,
svg {
  display: block;
  max-width: 100%;
}

.announcement-bar,
.site-header,
.site-footer {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.section,
.page-hero {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1080px);
  padding: 0.72rem 0.95rem;
  margin-top: 0.55rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(39, 17, 10, 0.96), rgba(19, 10, 7, 0.94)),
    linear-gradient(90deg, rgba(255, 84, 52, 0.28), rgba(255, 180, 87, 0.14));
  border: 1px solid rgba(255, 102, 67, 0.22);
  box-shadow:
    0 24px 60px rgba(5, 3, 3, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 79, 54, 0.22);
  color: #ffe0d1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.67rem;
  white-space: nowrap;
}

.announcement-bar strong {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text);
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 119, 67, 0.18);
  white-space: nowrap;
  color: #ffe7d9;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0.55rem auto 0;
  padding: 0.9rem 0;
  background: transparent;
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-symbol {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, rgba(255, 91, 31, 0.92), rgba(255, 180, 87, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 34px rgba(255, 96, 31, 0.26);
}

.brand-wordmark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-button {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 98, 34, 0.1);
  border: 1px solid rgba(255, 123, 63, 0.14);
  color: #fff1e8;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 157, 96, 0.14);
  background: rgba(19, 11, 8, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.section,
.page-hero {
  padding: var(--space-section) 0;
}

.section-tight {
  padding: 0.8rem 0 0.25rem;
}

.eyebrow,
.card-tag,
.example-label,
.price-tier,
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.accent-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(92vh - 8rem);
}

.hero-copy {
  max-width: 38rem;
}

.hero h1,
.page-hero h1,
.section-head h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.page-hero h1,
.section-head h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-text,
.section-head p,
.glass-card p,
.problem-card p,
.example-card p,
.pricing-card li,
.price-copy,
.timeline-step p,
.roadmap-card p,
.detail-card p,
.compare-item p,
.form-note,
.ai-brief p,
.ai-note strong,
.site-footer p,
.site-footer a {
  color: var(--text-soft);
  line-height: 1.82;
}

.hero-text {
  margin-top: 1.35rem;
  font-size: 1.05rem;
  max-width: 35rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: #1c0f08;
  font-weight: 700;
  background: var(--gradient-primary);
  box-shadow: 0 20px 50px rgba(255, 106, 24, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 157, 96, 0.14);
}

.hero-points,
.ai-points,
.pricing-card ul {
  padding: 0;
  margin: 1.8rem 0 1.25rem;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
}

.hero-points li,
.ai-points li,
.pricing-card li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before,
.ai-points li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding-left: 0;
  color: var(--text-soft);
}

.hero-points li::before {
  position: static;
  flex: 0 0 0.42rem;
  margin-top: 0.58rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-stage {
  position: relative;
  min-height: 32rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-width: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 93, 31, 0.34), transparent 18rem),
    radial-gradient(circle at 76% 28%, rgba(255, 182, 87, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(30, 17, 11, 0.98), rgba(8, 5, 4, 0.98));
  box-shadow: var(--shadow-lg);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero-stage::before {
  width: 30rem;
  height: 30rem;
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(255, 174, 79, 0.14), transparent 70%);
}

.hero-stage::after {
  width: 24rem;
  height: 24rem;
  bottom: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(255, 98, 34, 0.18), transparent 70%);
}

.hero-screen {
  position: absolute;
  inset: 2rem;
  padding: 1.2rem;
  border-radius: 32px;
  transform: none;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(26, 16, 11, 0.96), rgba(11, 7, 5, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

.screen-top {
  display: flex;
  gap: 0.4rem;
}

.screen-top span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.screen-body {
  padding: 1.8rem 1rem 0;
  min-width: 0;
}

.screen-kicker {
  margin: 0;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.screen-body h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.screen-lines {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.screen-lines span {
  display: block;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.screen-lines span:nth-child(1) {
  width: 82%;
}

.screen-lines span:nth-child(2) {
  width: 68%;
}

.screen-lines span:nth-child(3) {
  width: 56%;
}

.screen-panel {
  max-width: 20rem;
  padding: 1.2rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(34, 19, 12, 0.95), rgba(16, 10, 7, 0.9)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.12), rgba(255, 180, 87, 0.08));
  box-shadow: var(--shadow-md);
}

.screen-panel strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.3;
}

.screen-panel p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-badge {
  position: absolute;
  min-width: 11rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(31, 18, 12, 0.92), rgba(14, 8, 6, 0.88)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.14), rgba(255, 180, 87, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(2, 8, 20, 0.34);
  backdrop-filter: blur(18px);
  animation: floatBadge 7s ease-in-out infinite;
}

.hero-badge span {
  display: block;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.hero-badge strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.badge-one {
  top: 2rem;
  right: 1.6rem;
}

.badge-two {
  right: 0.8rem;
  bottom: 8.1rem;
  animation-delay: -2s;
}

.badge-three {
  left: 1.3rem;
  bottom: 1.5rem;
  animation-delay: -4s;
}

.proof-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.2rem;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.proof-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  min-width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 157, 96, 0.1);
  color: var(--text-soft);
}

.proof-track span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gradient-warm);
}

body[data-page="home"] .proof-marquee {
  margin-top: 0.2rem;
  margin-bottom: 0.65rem;
}

body[data-page="home"] .problem-card {
  background:
    linear-gradient(180deg, rgba(19, 12, 8, 0.98), rgba(10, 6, 5, 0.98)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 70%);
  border-color: rgba(255, 131, 67, 0.12);
}

body[data-page="home"] .problem-card::before {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 109, 31, 0.9), rgba(255, 180, 87, 0.32));
}

body[data-page="home"] .problem-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(26, 15, 9, 0.98), rgba(9, 6, 5, 0.98)),
    linear-gradient(135deg, rgba(255, 174, 79, 0.08), transparent 72%);
}

body[data-page="home"] .problem-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(17, 11, 8, 0.98), rgba(7, 4, 4, 0.98)),
    linear-gradient(135deg, rgba(255, 90, 42, 0.14), transparent 74%);
}

body[data-page="home"] .solution-section .story-grid {
  gap: 1.8rem;
}

body[data-page="home"] .glass-card {
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 180, 87, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(29, 17, 11, 0.9), rgba(10, 6, 5, 0.92));
  border-color: rgba(255, 157, 96, 0.12);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .glass-card::before {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 208, 191, 0), rgba(255, 208, 191, 0.7), rgba(255, 208, 191, 0));
}

body[data-page="home"] .glass-card:nth-child(2) {
  transform: translateY(1.1rem);
}

body[data-page="home"] .glass-card:nth-child(2):hover {
  transform: translateY(0.3rem);
}

body[data-page="home"] .process-preview {
  position: relative;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
  padding-top: 0.35rem;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.45rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.42), rgba(255, 90, 42, 0));
}

.process-step {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 157, 96, 0.1);
  background:
    linear-gradient(180deg, rgba(24, 15, 10, 0.98), rgba(10, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 72%);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 157, 96, 0.18);
}

.process-step:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(255, 180, 87, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(22, 14, 9, 0.98), rgba(9, 6, 5, 0.96));
}

.process-step:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(18, 11, 8, 0.98), rgba(7, 4, 4, 0.96)),
    linear-gradient(135deg, rgba(255, 90, 42, 0.12), transparent 74%);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 2.45rem;
  right: -1.45rem;
  width: 1.45rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 180, 87, 0.6), rgba(255, 180, 87, 0));
}

.process-step:last-child::after {
  display: none;
}

.process-step-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.process-number {
  display: inline-block;
  color: rgba(255, 180, 87, 0.92);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.process-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 157, 96, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
}

.process-step h3 {
  margin: 0;
  max-width: 12ch;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.process-step p {
  margin: 0;
  max-width: 19rem;
  color: var(--text-soft);
  line-height: 1.76;
}

body[data-page="home"] .usp-panel {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 180, 87, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(24, 15, 10, 0.98), rgba(10, 6, 5, 0.96));
}

body[data-page="home"] .home-final-cta {
  background:
    linear-gradient(180deg, rgba(28, 16, 10, 0.98), rgba(11, 7, 5, 0.98)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.18), rgba(255, 180, 87, 0.06));
  border-color: rgba(255, 157, 96, 0.16);
}

.service-offer-grid,
.service-result-grid,
.simple-process {
  display: grid;
  gap: 1.55rem;
}

.service-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-offer {
  position: relative;
  display: grid;
  gap: 0.95rem;
  min-height: 21rem;
  padding: 2rem 1.85rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 157, 96, 0.1);
  box-shadow: var(--shadow-md);
}

.service-offer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 208, 191, 0), rgba(255, 208, 191, 0.75), rgba(255, 208, 191, 0));
}

.service-offer-primary {
  background:
    linear-gradient(180deg, rgba(26, 16, 10, 0.98), rgba(10, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.14), transparent 72%);
}

.service-offer-secondary {
  background:
    radial-gradient(circle at top right, rgba(255, 180, 87, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(22, 14, 9, 0.98), rgba(9, 6, 5, 0.96));
}

.service-offer-tertiary {
  background:
    linear-gradient(180deg, rgba(15, 9, 6, 0.78), rgba(15, 9, 6, 0.26)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.12), transparent 72%);
  backdrop-filter: blur(16px);
}

.service-lead {
  margin: 0;
  max-width: 22rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.62;
}

.service-points {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.82rem;
}

.service-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 95, 31, 1), rgba(255, 180, 87, 1));
}

.service-overview-panel {
  position: relative;
  padding: 2.2rem;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 157, 96, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 180, 87, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(24, 15, 10, 0.98), rgba(10, 6, 5, 0.96));
  box-shadow: var(--shadow-lg);
}

.service-overview-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 208, 191, 0), rgba(255, 208, 191, 0.75), rgba(255, 208, 191, 0));
}

.service-overview-intro {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.service-overview-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-overview-intro p:last-child {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.service-overview-block {
  padding: 1.3rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 157, 96, 0.1);
  background:
    linear-gradient(180deg, rgba(29, 18, 12, 0.84), rgba(13, 8, 6, 0.76)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 70%);
  backdrop-filter: blur(12px);
}

.service-overview-block h3 {
  margin: 0 0 0.9rem;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.service-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.82rem;
}

.service-overview-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.service-overview-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 95, 31, 1), rgba(255, 180, 87, 1));
}

.service-overview-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1rem;
  align-items: start;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 157, 96, 0.1);
}

.service-overview-note strong {
  color: var(--text);
}

.service-overview-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.service-result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-result {
  padding-right: 1.15rem;
  border-right: 1px solid rgba(255, 157, 96, 0.12);
}

.service-result:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-result h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.service-result p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.pricing-card-button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.pricing-trust {
  max-width: 38rem;
  margin: 2rem auto 0;
  text-align: center;
}

.pricing-trust strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--text);
}

.pricing-trust p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.simple-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  position: relative;
}

.simple-process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.42), rgba(255, 90, 42, 0));
}

.simple-step {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding-top: 0.2rem;
}

.simple-step::after {
  content: "";
  position: absolute;
  top: 2.25rem;
  right: -0.78rem;
  width: 1.55rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 180, 87, 0.58), rgba(255, 180, 87, 0));
}

.simple-step:last-child::after {
  display: none;
}

.simple-step-number {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  color: rgba(255, 180, 87, 0.92);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.88;
}

.simple-step-copy h3 {
  margin: 0 0 0.72rem;
  max-width: 13ch;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.simple-step-copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 157, 96, 0.12);
}

.simple-step-copy p {
  margin: 0;
  max-width: 18rem;
  color: var(--text-soft);
  line-height: 1.74;
}

.process-assurance {
  max-width: 28rem;
  margin: 2.5rem auto 0;
  text-align: center;
}

.process-assurance strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.process-assurance p {
  margin: 0;
  color: var(--text-soft);
}

body[data-page="prozess"] .simple-process {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
  padding-left: 0;
}

body[data-page="prozess"] .simple-process::before {
  display: none;
}

body[data-page="prozess"] .simple-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 157, 96, 0.1);
  background:
    linear-gradient(180deg, rgba(24, 15, 10, 0.98), rgba(10, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 72%);
  box-shadow: var(--shadow-md);
}

body[data-page="prozess"] .simple-step:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(255, 180, 87, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(22, 14, 9, 0.98), rgba(9, 6, 5, 0.96));
}

body[data-page="prozess"] .simple-step:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(18, 11, 8, 0.98), rgba(7, 4, 4, 0.96)),
    linear-gradient(135deg, rgba(255, 90, 42, 0.12), transparent 74%);
}

body[data-page="prozess"] .simple-step::before,
body[data-page="prozess"] .simple-step::after {
  display: none;
  content: none;
}

body[data-page="prozess"] .simple-step-number {
  min-width: 2.3rem;
  font-size: 2.25rem;
  line-height: 0.95;
}

body[data-page="prozess"] .simple-step-copy {
  padding-top: 0;
  border-top: 0;
}

body[data-page="prozess"] .simple-step-copy h3,
body[data-page="prozess"] .simple-step-copy p {
  max-width: none;
}

body[data-page="prozess"] .process-assurance {
  max-width: 52rem;
  margin-top: 1.7rem;
  text-align: left;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-head.narrow {
  max-width: 36rem;
}

.page-hero .section-head,
.detail-layout > .section-head,
.split-story > .section-head,
.compare-section > .section-head {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(24, 15, 10, 0.96), rgba(10, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), rgba(255, 180, 87, 0.04));
  border: 1px solid rgba(255, 157, 96, 0.08);
  box-shadow: var(--shadow-md);
}

.page-hero .section-head::before,
.detail-layout > .section-head::before,
.split-story > .section-head::before,
.compare-section > .section-head::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.9), rgba(255, 90, 42, 0));
}

body:not([data-page="home"]) .page-hero .section-head,
body:not([data-page="home"]) .detail-layout > .section-head,
body:not([data-page="home"]) .split-story > .section-head,
body:not([data-page="home"]) .compare-section > .section-head {
  overflow: visible;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

body:not([data-page="home"]) .page-hero .section-head::before,
body:not([data-page="home"]) .detail-layout > .section-head::before,
body:not([data-page="home"]) .split-story > .section-head::before,
body:not([data-page="home"]) .compare-section > .section-head::before {
  display: none;
}

body[data-page="leistungen"] .page-hero {
  padding-top: 2.2rem;
  padding-bottom: 0.9rem;
}

body[data-page="leistungen"] .page-hero .section-head {
  max-width: 33rem;
  margin-bottom: 0.35rem;
}

body[data-page="leistungen"] .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

body[data-page="leistungen"] .service-columns {
  margin-top: 0.15rem;
}

body[data-page="leistungen"] .service-columns.section {
  padding-top: 0.55rem;
}

body[data-page="leistungen"] .detail-layout > .section-head,
body[data-page="leistungen"] .split-story > .section-head {
  position: relative;
  margin-bottom: 1.55rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 157, 96, 0.12);
}

body[data-page="leistungen"] .detail-layout > .section-head::after,
body[data-page="leistungen"] .split-story > .section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient-primary);
}

body[data-page="preise"] .page-hero {
  padding-top: 2.9rem;
  padding-bottom: 1.6rem;
}

body[data-page="preise"] .pricing-preview.section {
  padding-top: 1.05rem;
}

body[data-page="preise"] .page-hero .section-head {
  max-width: 45rem;
  padding: 0.35rem 0 0.35rem 1.35rem;
  border-left: 3px solid rgba(255, 157, 96, 0.28);
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, rgba(255, 98, 34, 0.1), transparent 65%);
}

body[data-page="preise"] .detail-layout > .section-head,
body[data-page="preise"] .compare-section > .section-head,
body[data-page="preise"] .contact-section > .section-head {
  position: relative;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
}

body[data-page="preise"] .detail-layout > .section-head::after,
body[data-page="preise"] .compare-section > .section-head::after,
body[data-page="preise"] .contact-section > .section-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 112px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 1), rgba(255, 90, 42, 0));
}

body[data-page="prozess"] .page-hero {
  padding-top: 2.8rem;
  padding-bottom: 1.8rem;
}

body[data-page="prozess"] .timeline-block.section {
  padding-top: 1.15rem;
}

body[data-page="prozess"] .page-hero .section-head {
  max-width: 45rem;
  margin-inline: auto;
  padding: 1.2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 157, 96, 0.14);
  border-bottom: 1px solid rgba(255, 157, 96, 0.14);
}

body[data-page="prozess"] .detail-layout > .section-head,
body[data-page="prozess"] .compare-section > .section-head {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(255, 157, 96, 0.24);
}

body[data-page="website-preis"] .page-hero {
  padding-top: 2.9rem;
  padding-bottom: 1.5rem;
}

body[data-page="website-preis"] .page-hero .section-head {
  max-width: 46rem;
  margin-inline: auto;
  padding: 1.1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 157, 96, 0.14);
  border-bottom: 1px solid rgba(255, 157, 96, 0.14);
}

body[data-page="website-preis"] .compare-section > .section-head {
  position: relative;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1.7rem;
  padding-bottom: 1rem;
}

body[data-page="website-preis"] .compare-section > .section-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 112px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 1), rgba(255, 90, 42, 0));
}

.problem-grid,
.story-grid,
.examples-grid,
.pricing-grid,
.roadmap-grid,
.service-columns,
.detail-grid,
.compare-list,
.timeline,
.timeline-block {
  display: grid;
  gap: 1.55rem;
}

.problem-section {
  padding-top: 2.3rem;
}

.problem-grid,
.story-grid,
.examples-grid,
.pricing-grid,
.compare-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-grid,
.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-block {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-card,
.glass-card,
.example-card,
.pricing-card,
.roadmap-card,
.detail-card,
.compare-item,
.timeline-step,
.contact-form,
.ai-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(24, 15, 10, 0.96), rgba(10, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), rgba(255, 180, 87, 0.04));
  border: 1px solid rgba(255, 157, 96, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.problem-card::before,
.glass-card::before,
.example-card::before,
.pricing-card::before,
.roadmap-card::before,
.detail-card::before,
.compare-item::before,
.timeline-step::before,
.contact-form::before,
.ai-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.9), rgba(255, 90, 42, 0));
}

.problem-card:hover,
.glass-card:hover,
.example-card:hover,
.pricing-card:hover,
.roadmap-card:hover,
.detail-card:hover,
.compare-item:hover,
.timeline-step:hover,
.contact-form:hover,
.ai-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 157, 96, 0.18);
  box-shadow: 0 28px 80px rgba(2, 8, 20, 0.38);
}

.problem-card,
.glass-card,
.example-card,
.roadmap-card,
.detail-card,
.compare-item,
.timeline-step {
  padding: 2rem;
}

.problem-card h3,
.glass-card h3,
.example-card h3,
.roadmap-card h3,
.detail-card h3,
.compare-item span,
.timeline-step h3,
.contact-form strong,
.ai-panel h3,
.cta-panel h2 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.example-card,
.problem-card,
.glass-card {
  min-height: 17rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: 2.15rem 1.95rem;
}

.pricing-card.featured {
  transform: translateY(-0.45rem);
  background:
    linear-gradient(180deg, rgba(34, 19, 12, 0.98), rgba(15, 9, 6, 0.96)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.16), rgba(255, 180, 87, 0.08));
  border-color: rgba(255, 157, 96, 0.16);
}

body[data-page="preise"] .pricing-card.featured ul {
  margin-bottom: 1.55rem;
}

.feature-chip {
  align-self: flex-start;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 90, 42, 0.18);
  color: var(--warm-2);
}

.price-block {
  margin-bottom: 1.2rem;
}

.price-block span,
.price-block small {
  color: var(--text-dim);
}

.price-block strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-copy {
  margin-bottom: 0.2rem;
}

.pricing-card li + li,
.ai-points li + li {
  margin-top: 0.9rem;
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.pricing-note span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.usp-panel,
.home-final-cta {
  max-width: 46rem;
  margin-inline: auto;
  text-align: left;
}

.usp-panel p,
.home-final-cta p {
  max-width: 34rem;
  margin-inline: 0;
}

.usp-panel h2,
.home-final-cta h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}

.home-final-cta .cta-actions {
  justify-content: flex-start;
}

.roadmap-card span,
.timeline-step span,
.compare-item span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.section-link {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section-link a:not(.button) {
  color: var(--blue-3);
}

.section-link .button {
  color: var(--text);
  min-height: 3rem;
  padding: 0.82rem 1.3rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.3rem;
}

.contact-grid-single {
  grid-template-columns: 1fr;
}

.price-finder-layout {
  align-items: flex-start;
}

.contact-form,
.ai-panel {
  padding: 2.1rem;
}

.form-intro {
  margin-bottom: 1.6rem;
}

.form-intro p {
  margin: 0 0 0.45rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.choice-field {
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 0.92rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.choice-option {
  position: relative;
  display: block;
}

.choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-option span {
  display: flex;
  align-items: center;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 157, 96, 0.14);
  background:
    linear-gradient(180deg, rgba(31, 18, 12, 0.96), rgba(16, 10, 7, 0.94)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 60%);
  color: var(--text-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.choice-option span:hover {
  transform: translateY(-1px);
}

.choice-option input:checked + span {
  border-color: rgba(255, 157, 96, 0.38);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 3px rgba(255, 98, 34, 0.1);
}

.contact-form label span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-form label .field-hint {
  display: block;
  margin-top: 0.55rem;
  color: var(--blue-3);
  line-height: 1.55;
  font-size: 0.82rem;
}

.form-note {
  margin: 1rem 0 0;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status.is-loading {
  color: var(--blue-3);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #ffb3a1;
}

.estimate-drawer {
  margin-top: 1rem;
  border: 1px solid rgba(255, 157, 96, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(22, 13, 9, 0.96), rgba(12, 8, 6, 0.94)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.08), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.estimate-toggle {
  position: relative;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.estimate-toggle span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.estimate-toggle strong {
  display: block;
  max-width: 38rem;
  padding-right: 2rem;
  line-height: 1.55;
  font-size: 0.95rem;
}

.estimate-toggle::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: var(--text-soft);
  font-size: 1.35rem;
  line-height: 1;
}

.estimate-drawer {
  position: relative;
}

.estimate-drawer.is-open .estimate-toggle::after {
  content: "-";
}

.estimate-panel {
  padding: 0 1.1rem 1.1rem;
}

.estimate-copy {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.estimate-inline {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 157, 96, 0.1);
}

.estimate-inline span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.estimate-inline strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.estimate-inline small {
  display: block;
  margin-top: 0.28rem;
  color: var(--blue-3);
  font-size: 0.82rem;
}

.estimate-inline p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.price-meter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.9rem;
}

.price-meter span {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-meter-track {
  position: relative;
  width: 100%;
  height: 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 157, 96, 0.1);
}

.price-meter-fill {
  position: relative;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5a2a 0%, #ff9b3d 48%, #c7ff7a 100%);
  box-shadow: 0 0 20px rgba(255, 138, 58, 0.24);
  transition: width 260ms ease;
}

.price-meter-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.3rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #fff6ed;
  box-shadow:
    0 0 0 3px rgba(255, 143, 43, 0.22),
    0 0 20px rgba(255, 180, 87, 0.3);
}

.discount-range,
.estimate-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.68rem 0.88rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 130, 74, 0.2);
  background:
    linear-gradient(180deg, rgba(44, 19, 10, 0.9), rgba(20, 11, 8, 0.92)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.12), rgba(255, 180, 87, 0.06));
  color: #ffd8c3;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.estimate-discount {
  margin-top: 0.72rem;
}

.promo-status {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.promo-status.is-valid {
  color: #ffdbb2;
}

.promo-status.is-invalid {
  color: #ffb0a1;
}

input.is-valid {
  border-color: rgba(255, 180, 87, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(255, 180, 87, 0.08);
}

input.is-invalid {
  border-color: rgba(255, 106, 97, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 4px rgba(255, 106, 97, 0.08);
}

.ai-brief {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.ai-brief p {
  margin: 0;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 157, 96, 0.08);
}

.ai-brief span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.ai-brief strong {
  display: block;
  color: var(--text);
  line-height: 1.6;
}

.ai-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 157, 96, 0.08);
}

.ai-note p {
  margin: 0 0 0.35rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.result-range {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.price-result-copy {
  color: var(--text-soft);
  line-height: 1.75;
}

.result-meta {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.result-meta-item {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 157, 96, 0.08);
}

.result-meta-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.result-meta-item span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.result-meta-item strong {
  color: var(--text);
  line-height: 1.5;
}

.ai-points {
  margin-top: 1.5rem;
}

.page-hero {
  position: relative;
  padding-top: calc(var(--space-section) + 1rem);
}

.page-hero::before {
  display: none;
}

.service-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  min-height: 14rem;
}

.legal-stack {
  display: grid;
  gap: 1.35rem;
}

.legal-card {
  min-height: auto;
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-card h3 {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.78;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p,
.legal-card ul,
.legal-card ol {
  margin-top: 0.9rem;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.15rem;
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-card a {
  color: var(--warm-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-card strong {
  color: var(--text);
}

.legal-card-accent {
  background:
    linear-gradient(180deg, rgba(34, 19, 12, 0.98), rgba(15, 9, 6, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.12), rgba(255, 180, 87, 0.05));
  border-color: rgba(255, 157, 96, 0.14);
}

.legal-note {
  margin-top: 0.95rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 157, 96, 0.14);
  background:
    linear-gradient(180deg, rgba(31, 18, 12, 0.96), rgba(16, 10, 7, 0.94)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.06), transparent 60%);
}

.consent-field input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.22rem 0 0;
  accent-color: #ff8f2b;
}

.consent-copy {
  display: block;
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.68;
  font-size: 0.94rem;
}

.consent-copy a {
  color: var(--warm-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cta-panel {
  padding: 2.4rem;
  margin-bottom: 1.75rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 2.2rem 1rem calc(3rem + var(--safe-bottom));
  border-top: 1px solid rgba(255, 157, 96, 0.08);
  background: linear-gradient(180deg, rgba(10, 6, 5, 0), rgba(10, 6, 5, 0.82));
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.site-footer a {
  padding: 0.2rem 0;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer a:hover {
  color: #ffe0d1;
}

.promo-panel {
  max-width: 48rem;
  margin-inline: auto;
  padding: 2.3rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(25, 14, 9, 0.94), rgba(9, 6, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.14), rgba(255, 180, 87, 0.06));
  border: 1px solid rgba(255, 157, 96, 0.14);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.promo-code-row {
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
}

.promo-label {
  margin: 0 0 0.8rem;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 4.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 157, 96, 0.18);
  background:
    linear-gradient(180deg, rgba(34, 18, 11, 0.92), rgba(15, 8, 6, 0.96)),
    linear-gradient(135deg, rgba(255, 95, 31, 0.12), rgba(255, 180, 87, 0.08));
  color: #fff2e8;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-copy {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.promo-copy-button {
  min-width: 11.5rem;
}

.promo-copy-status {
  min-height: 1.4rem;
  margin: 0.7rem 0 0;
  color: #ffd8c3;
  font-size: 0.82rem;
  line-height: 1.45;
}

.promo-panel .cta-actions {
  margin-top: 1.6rem;
}

.floating-preview {
  position: fixed;
  left: 50%;
  bottom: calc(var(--safe-bottom) + 1rem);
  z-index: 42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), 28rem);
  padding: 0.92rem 1rem;
  border-radius: 24px;
  color: #fff6f0;
  background:
    linear-gradient(180deg, rgba(22, 13, 9, 0.94), rgba(9, 6, 5, 0.98)),
    linear-gradient(135deg, rgba(255, 98, 34, 0.12), rgba(255, 180, 87, 0.04));
  border: 1px solid rgba(255, 157, 96, 0.16);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transform: translate(-50%, calc(100% + 1.5rem));
  opacity: 0;
  visibility: hidden;
  transition: transform 320ms ease, opacity 240ms ease, visibility 240ms ease;
}

.floating-preview.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.floating-preview span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--blue-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.floating-preview strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.floating-preview::after {
  content: "20%";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  min-height: 2.7rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: #1f120a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #ffb457 0%, #ff7b3f 48%, #ff5b1f 100%);
  box-shadow: 0 18px 40px rgba(255, 106, 24, 0.28);
}

body[data-page="anfragen"] .floating-preview {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes revealPanel {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .problem-grid,
  .story-grid,
  .examples-grid,
  .pricing-grid,
  .roadmap-grid,
  .contact-grid,
  .service-columns,
  .detail-grid,
  .compare-list,
  .timeline,
  .timeline-block {
    grid-template-columns: 1fr;
  }

  .service-offer-grid,
  .service-result-grid,
  .simple-process {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .announcement-bar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-card.featured {
    transform: none;
  }

  .hero-stage {
    min-height: 30rem;
  }

  .service-offer {
    min-height: auto;
  }

  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-note {
    grid-template-columns: 1fr;
  }

  .service-result {
    padding-right: 0;
    padding-bottom: 1.1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 157, 96, 0.12);
  }

  .service-result:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .simple-process {
    gap: 1.3rem;
    padding-left: 1.15rem;
  }

  .simple-process::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.45), rgba(255, 90, 42, 0));
  }

  .simple-step {
    gap: 0.65rem;
    padding: 0 0 0 1rem;
  }

  .simple-step::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: -0.08rem;
    width: 0.76rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 95, 31, 1), rgba(255, 180, 87, 0.82));
  }

  .simple-step::after {
    display: none;
  }

  .simple-step-copy {
    padding-top: 0;
    border-top: 0;
  }

  .simple-step-copy h3,
  .simple-step-copy p {
    max-width: none;
  }

  .process-assurance {
    max-width: none;
    margin-top: 1.8rem;
    text-align: left;
  }

  body[data-page="prozess"] .simple-process {
    padding-left: 0;
    gap: 0.95rem;
  }

  body[data-page="prozess"] .simple-step {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    padding: 1.05rem 1.05rem;
  }

  body[data-page="prozess"] .simple-step-number {
    min-width: 2rem;
    font-size: 1.95rem;
  }

  body[data-page="prozess"] .process-assurance {
    margin-top: 1.35rem;
  }
}

@media (max-width: 760px) {
  .site-frame {
    overflow-x: clip;
  }

  .announcement-bar,
  .site-header,
  .section,
  .page-hero,
  .proof-marquee {
    width: min(calc(100% - 3.5rem), 31rem);
    margin-inline: auto;
  }

  .site-header {
    position: sticky;
    top: var(--safe-top);
    align-items: center;
    padding: 0.32rem 0 0;
    margin-top: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(18, 10, 7, 0.98);
    border: 1px solid rgba(255, 157, 96, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .announcement-bar {
    margin-top: 0.45rem;
    padding: 0.78rem 0.92rem;
    border-radius: 22px;
  }

  .section,
  .page-hero {
    padding: clamp(2.35rem, 7vw, 3.15rem) 0;
  }

  .section-head,
  .hero-copy {
    max-width: 27rem;
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(1.72rem, 7vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-stage {
    min-height: 20.35rem;
    border-radius: 22px;
  }

  .hero-screen {
    inset: 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: none;
    border-radius: 22px;
    padding: 0.82rem;
    overflow: hidden;
  }

  .hero-badge {
    max-width: none;
    min-width: 0;
    left: 1rem;
    right: 1rem;
  }

  .badge-one {
    top: auto;
    bottom: 7rem;
  }

  .badge-two {
    bottom: 3.7rem;
  }

  .badge-three {
    bottom: 0.8rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.76rem 0.96rem;
  }

  .hero {
    gap: 1.35rem;
    padding-top: 0.25rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .hero-points {
    margin-top: 1rem;
    gap: 0.58rem;
  }

  .hero-points li,
  .pricing-card li,
  .section-head p,
  .problem-card p,
  .glass-card p,
  .example-card p,
  .roadmap-card p,
  .detail-card p,
  .compare-item p,
  .form-note,
  .price-copy,
  .price-result-copy {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .screen-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.72rem;
    padding: 0.88rem 0.24rem 0;
  }

  .screen-body h2 {
    font-size: clamp(1.28rem, 5.7vw, 1.82rem);
    max-width: 11ch;
    margin: 0.12rem 0 0;
    line-height: 0.98;
  }

  .screen-lines {
    gap: 0.45rem;
    width: 100%;
    margin-bottom: 0;
  }

  .screen-panel {
    width: 100%;
    max-width: none;
    margin-top: 0.15rem;
    align-self: stretch;
    padding: 0.92rem;
    border-radius: 15px;
  }

  .screen-panel strong {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .screen-panel p {
    font-size: 0.86rem;
    line-height: 1.58;
    max-width: 100%;
  }

  .proof-marquee {
    mask-image: none;
    margin-bottom: 0.15rem;
  }

  body[data-page="home"] .proof-marquee {
    margin-top: 0.4rem;
  }

  body[data-page="home"] .glass-card:nth-child(2) {
    transform: none;
  }

  body[data-page="home"] .glass-card:nth-child(2):hover {
    transform: translateY(-2px);
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-left: 1.1rem;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 90, 42, 0), rgba(255, 180, 87, 0.45), rgba(255, 90, 42, 0));
  }

  .process-step {
    gap: 0.65rem;
    padding: 1rem 1rem 1rem 1.08rem;
    border-radius: 22px;
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: 1.05rem;
    left: -0.1rem;
    width: 0.78rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 95, 31, 1), rgba(255, 180, 87, 0.82));
  }

  .process-step::after {
    display: none;
  }

  .process-step-top {
    gap: 0.62rem;
  }

  .process-number {
    font-size: 1.85rem;
  }

  .process-kicker {
    font-size: 0.6rem;
  }

  .process-step h3 {
    max-width: none;
    font-size: 1.04rem;
  }

  .process-step p {
    max-width: none;
  }

  .service-offer {
    padding: 1.25rem 1.1rem;
    border-radius: 24px;
  }

  .service-overview-panel {
    padding: 1.3rem 1.15rem;
    border-radius: 26px;
  }

  .service-overview-intro {
    margin-bottom: 1.25rem;
  }

  .service-overview-block {
    padding: 1rem;
    border-radius: 20px;
  }

  .service-result-grid {
    gap: 1rem;
  }

  .service-result {
    padding-bottom: 0.95rem;
  }

  .pricing-trust {
    margin-top: 1.45rem;
  }

  .simple-process {
    gap: 1.1rem;
  }

  .simple-step {
    padding-left: 0.95rem;
  }

  .simple-step::before {
    top: 1.05rem;
    width: 0.72rem;
  }

  .simple-step-number {
    font-size: 1.95rem;
  }

  .simple-step-copy h3 {
    font-size: 1.05rem;
  }

  .process-assurance strong,
  .pricing-trust strong {
    font-size: 0.95rem;
  }

  .usp-panel,
  .home-final-cta {
    text-align: left;
  }

  .usp-panel p,
  .home-final-cta p {
    margin-inline: 0;
  }

  .home-final-cta .cta-actions {
    justify-content: stretch;
  }

  .home-checklist-panel {
    margin-top: 1.3rem;
    padding-top: 1.2rem;
  }

  .home-checklist-panel .section-head {
    margin-bottom: 0.35rem;
  }

  .floating-preview {
    width: min(calc(100% - 1.4rem), 24rem);
    bottom: calc(var(--safe-bottom) + 0.72rem);
    padding: 0.88rem 0.92rem;
    border-radius: 22px;
  }

  .floating-preview strong {
    font-size: 0.9rem;
  }

  .floating-preview::after {
    min-width: 6.4rem;
    min-height: 2.5rem;
    padding-inline: 0.82rem;
    font-size: 0.8rem;
  }

  .proof-track {
    gap: 0.6rem;
    animation-duration: 16s;
  }

  .proof-track span {
    padding: 0.56rem 0.68rem;
    font-size: 0.69rem;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .problem-card,
  .glass-card,
  .example-card,
  .roadmap-card,
  .detail-card,
  .compare-item,
  .timeline-step {
    min-height: auto;
    padding: 1rem;
  }

  .pricing-card {
    min-height: auto;
    padding: 1.08rem 0.92rem;
  }

  .price-block strong {
    font-size: 1.5rem;
  }

  .contact-form,
  .ai-panel,
  .cta-panel {
    padding: 1rem;
  }

  .form-grid {
    gap: 0.88rem;
  }

  .choice-option span {
    min-height: 2.75rem;
    padding: 0.68rem 0.76rem;
    font-size: 0.9rem;
  }

  .estimate-toggle {
    padding: 0.9rem 1rem;
  }

  .estimate-toggle strong {
    padding-right: 1.8rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .estimate-panel {
    padding: 0 0.82rem 0.82rem;
  }

  .estimate-inline {
    padding: 0.78rem 0.84rem;
  }

  .price-meter {
    gap: 0.5rem;
  }

  .price-meter span {
    font-size: 0.64rem;
  }

  .discount-range,
  .estimate-discount {
    width: 100%;
    margin-top: 0.72rem;
    padding: 0.7rem 0.78rem;
    font-size: 0.8rem;
  }

  .estimate-inline strong {
    font-size: 1.18rem;
  }

  .result-range {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .cta-panel {
    margin-bottom: 0.7rem;
  }

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

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

  .site-footer {
    flex-direction: column;
    align-items: center;
    padding: 1.55rem 1rem calc(2.1rem + var(--safe-bottom));
  }

  .brand {
    gap: 0.65rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-symbol {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-wordmark {
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
    background: rgba(17, 10, 7, 0.42);
    border: 1px solid rgba(255, 157, 96, 0.1);
    backdrop-filter: blur(10px);
  }

  .nav-toggle span {
    width: 1.05rem;
  }
}

@media (max-width: 520px) {
  .process-flow {
    padding-left: 0.95rem;
  }

  .process-step {
    padding: 0.95rem 0.92rem 0.95rem 0.86rem;
  }

  .process-step::before {
    left: -0.18rem;
    width: 0.7rem;
  }

  .process-number {
    font-size: 1.62rem;
  }

  .service-offer {
    padding: 1.05rem 0.95rem;
    border-radius: 20px;
  }

  .service-overview-panel {
    padding: 1.05rem 0.95rem;
    border-radius: 22px;
  }

  .service-overview-intro h2 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .service-overview-block {
    padding: 0.92rem;
    border-radius: 18px;
  }

  .service-overview-block h3 {
    font-size: 0.98rem;
  }

  .service-overview-list li,
  .service-overview-note p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .service-lead,
  .service-points li,
  .service-result p,
  .pricing-trust p,
  .process-assurance p,
  .home-checklist-panel .section-head p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .simple-process {
    padding-left: 0.95rem;
  }

  .simple-step {
    padding-left: 0.82rem;
  }

  .simple-step::before {
    left: -0.18rem;
    width: 0.68rem;
  }

  .simple-step-number {
    font-size: 1.7rem;
  }

  .simple-step-copy h3 {
    font-size: 0.98rem;
  }

  body[data-page="prozess"] .simple-step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.95rem;
  }

  body[data-page="prozess"] .simple-step-number {
    min-width: 0;
    font-size: 1.62rem;
  }

  .announcement-bar {
    gap: 0.65rem;
    width: min(calc(100% - 3rem), 26rem);
    padding: 0.82rem 0.9rem;
  }

  .announcement-bar strong {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .announcement-bar a {
    width: 100%;
  }

  .brand {
    gap: 0.65rem;
    padding: 0.38rem 0.72rem 0.38rem 0.38rem;
  }

  .brand-symbol {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand-wordmark {
    font-size: 0.94rem;
  }

  .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-nav {
    gap: 0.85rem;
    padding: 1rem;
  }

  .site-header {
    width: min(calc(100% - 3rem), 26rem);
    top: var(--safe-top);
    padding: 0.26rem 0 0;
  }

  .floating-preview {
    width: min(calc(100% - 1.1rem), 22.5rem);
    gap: 0.72rem;
    padding: 0.82rem 0.8rem;
  }

  .floating-preview span {
    font-size: 0.62rem;
  }

  .floating-preview strong {
    font-size: 0.84rem;
  }

  .floating-preview::after {
    min-width: 5.9rem;
    font-size: 0.76rem;
  }

  .promo-panel {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .promo-code-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .promo-code {
    min-height: 3.65rem;
    width: 100%;
    font-size: clamp(1.5rem, 8vw, 2.15rem);
    letter-spacing: 0.12em;
  }

  .promo-copy-button {
    width: 100%;
    min-width: 0;
  }

  .promo-copy {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .section-tight {
    padding: 0.65rem 0 0.15rem;
  }

  .section,
  .page-hero {
    width: min(calc(100% - 2.8rem), 25rem);
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(1.48rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .eyebrow,
  .card-tag,
  .example-label,
  .price-tier,
  .feature-chip {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .cta-actions {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.74rem 0.92rem;
  }

  .hero-stage {
    min-height: 20.6rem;
  }

  .hero-screen {
    inset: 0.72rem;
    padding: 0.74rem;
  }

  .screen-body {
    gap: 0.66rem;
    padding: 0.78rem 0.14rem 0;
  }

  .screen-body h2 {
    font-size: clamp(1.18rem, 6.6vw, 1.48rem);
    max-width: 11ch;
  }

  .screen-panel strong {
    font-size: 0.86rem;
  }

  .screen-panel p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .proof-track {
    gap: 0.55rem;
  }

  .proof-track span {
    padding: 0.55rem 0.68rem;
    font-size: 0.7rem;
  }

  .pricing-card,
  .contact-form,
  .ai-panel,
  .cta-panel {
    padding: 1rem;
  }

  .price-block strong {
    font-size: 1.55rem;
  }

  .result-range {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .estimate-toggle::after {
    top: 0.9rem;
    right: 1rem;
  }
}

body:not([data-page="home"]) .ambient {
  display: none;
}
