/* ===== Design Tokens ===== */
:root {
  --bg: #1a1f24;
  --bg-alt: #22272d;
  --surface: #2b3138;
  --surface-2: #343b44;
  --border: #454d57;
  --text: #f3f0ea;
  --text-muted: #a9a297;
  --accent: #4a9d8e;
  --accent-strong: #3a8578;
  --accent-ink: #0f1614;
  --accent-glow: rgba(74, 157, 142, 0.16);
  --accent-ring: rgba(74, 157, 142, 0.22);
  --radius: 10px;
  --radius-sm: 8px;
  --content-max: 1140px;
  --page-gutter: 1.5rem;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);
  --shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.5);
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}
.section {
  padding-block: 5.5rem;
}
.section-alt {
  background-color: var(--bg-alt);
  border-block: 1px solid var(--border);
}
.section-head {
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-head--center {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-sub {
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}
.section-sub {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.section-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.88rem;
}
.btn-primary {
  background-color: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background-color: var(--accent-strong);
}
.btn-ghost {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1.5px solid var(--accent);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-outline.btn-sm {
  padding: 0.6rem 1.05rem;
  font-size: 0.88rem;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===== Brand ===== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.brand-mark svg {
  width: 26px;
  height: 26px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.55);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}
.main-nav {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.85rem 1rem;
  min-width: 0;
}
.main-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--text);
}
.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.65rem;
}
.header-actions.is-visible {
  display: flex;
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav {
  display: block;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
  padding-block: 0.75rem 1.25rem;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-nav a {
  padding: 0.7rem 0.25rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 4.5rem;
  background:
    radial-gradient(60% 55% at 85% 0%, var(--accent-glow), transparent 70%),
    var(--bg);
}
.hero-inner {
  padding-block: 2rem 4rem;
}
.hero-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero-heading .eyebrow {
  margin-bottom: 0.9rem;
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  max-width: 32ch;
  margin-inline: auto;
}
.hero-title .accent {
  color: var(--accent);
}
.hero-main {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
}
.hero-cta .btn {
  width: 100%;
}
.hero-cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.hero-cta-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hero-cta-note a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.path-doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 2.25rem;
}
.path-door {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.45rem;
  text-align: left;
  transition: border-color 0.2s ease;
}
.path-door:hover {
  border-color: var(--accent);
}
.path-door--primary {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.path-door h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.path-door > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}
.path-door-go {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
}
.path-door:hover .path-door-go {
  border-bottom-color: var(--accent);
}
.hero-inner > .hero-cta {
  max-width: none;
  align-items: center;
  margin-top: 1.5rem;
}
.hero-inner > .hero-cta .btn {
  width: auto;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stats > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  border-top: 3px solid var(--accent);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-stats dd {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 0.55rem;
}
.trust-bar {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}
.trust-inner span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.trust-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-inner li {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  opacity: 0.75;
}

/* ===== Ideal für ===== */
.ideal-for {
  border-top: 1px solid var(--border);
  padding-block: 2.25rem 2.75rem;
}
.ideal-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2.5rem;
  margin-top: 0.85rem;
}

.ideal-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 0;
  padding-left: 0;
}

.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-left: 0;
  padding-left: 0;
}

.ideal-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.28em;
  margin-left: 0;
}
@media (min-width: 700px) {
  .path-doors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .ideal-for-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2.5rem;
  }
}

/* ===== Cards ===== */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.cards-two {
  max-width: none;
}
.cards-three {
  max-width: 1100px;
  margin-inline: auto;
  gap: 1.5rem;
}
.card--featured-offer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-bottom: 3rem;
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .card--featured-offer {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    row-gap: 0.35rem;
    align-items: center;
    padding: 2rem 2.5rem;
  }
  .card--featured-offer .card-label,
  .card--featured-offer h3,
  .card--featured-offer > p {
    grid-column: 1;
  }
  .card--featured-offer .card-list {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
  }
}
.offer-split {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.5rem;
}
.offer-split p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 0.45rem;
  font-size: 1.02rem;
}
.offer-split .btn {
  margin-top: 1.1rem;
}
.cards-two .card-label,
.card--wide .card-label,
.cards-stack .card-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.cards-stack {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.card--wide {
  width: 100%;
}
.card--wide > .btn {
  margin-top: 1.15rem;
}
@media (min-width: 800px) {
  .card--wide {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    row-gap: 0.35rem;
    align-items: center;
    padding: 1.75rem 2.25rem;
  }
  .card--wide .card-label,
  .card--wide h3,
  .card--wide > p {
    grid-column: 1;
  }
  .card--wide .card-list {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }
  .card--wide .btn {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.35rem;
  }
}
.card-label {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.choose-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
  max-width: 52rem;
  margin-inline: auto;
}
.choose-card {
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.choose-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.45rem;
}
.choose-if {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}
.choose-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  white-space: nowrap;
}
.choose-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.choose-card p:last-of-type {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.card--featured-offer:hover,
.card--wide:hover {
  transform: none;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-2);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}
.card-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.5rem;
}
.card-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
}
.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.card-link + .card-link {
  margin-top: 0.55rem;
  margin-left: 1.1rem;
}
.card-link:hover {
  border-bottom-color: var(--accent);
}
.card-aside {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.services-note {
  margin-top: 2.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.55;
}
.services-note strong {
  color: var(--text);
  font-weight: 600;
}
.services-process {
  max-width: none;
  width: 100%;
  margin: 0;
}

/* ===== Why Kalyco ===== */
.why-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.why-point h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.why-point h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
}
.why-point p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.why-process {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.why-process h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.process {
  display: grid;
  gap: 1.5rem;
}
.process li {
  display: flex;
  gap: 1rem;
}
@media (min-width: 800px) {
  .why-process {
    padding: 2rem 2.5rem;
  }
  .process {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 3rem;
  }
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--surface-2);
}
.process h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.process p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Agencies ===== */
.agencies-grid .section-head {
  margin-bottom: 2.5rem;
}
.agencies-points {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.agency-point h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.agency-point p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 36rem;
}
.agencies-cta {
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.agencies-cta > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pain-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.pain-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

/* ===== Cost example ===== */
#kosten .container {
  max-width: 1140px;
}
.cost-assumptions {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.cost-assumptions strong {
  color: var(--text);
  font-weight: 600;
}
.cost-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  margin-top: 3rem;
}
.cost-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cost-card--highlight {
  background: var(--surface-2);
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow);
}
.cost-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
.cost-card-header h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.25rem 0;
  color: var(--text);
}
.cost-card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.cost-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cost-badge--muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cost-badge--accent {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.cost-card-body {
  flex-grow: 1;
}
.cost-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--border);
}
.cost-label {
  font-size: 0.95rem;
  color: var(--text);
}
.cost-label small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cost-value {
  font-weight: 600;
  font-family: var(--font-display);
  white-space: nowrap;
  color: var(--text);
}
.cost-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 1.25rem;
}
.cost-card-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.cost-total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.cost-total-value {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
}
.cost-total-value--accent {
  color: var(--accent);
}
.cost-divider {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.cost-savings-badge {
  background: var(--bg);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.cost-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

/* ===== Pricing Grid & Cards ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.pricing-grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 960px) {
  .pricing-grid-three {
    grid-template-columns: 1fr;
  }
}
.pricing-grid-primary {
  max-width: none;
  margin: 0 0 2.75rem;
}
@media (min-width: 800px) {
  .pricing-grid-primary .pricing-card--featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    row-gap: 0.35rem;
    align-items: center;
    padding: 2rem 2.5rem;
  }
  .pricing-grid-primary .pricing-head {
    grid-column: 1;
    margin-bottom: 0;
  }
  .pricing-grid-primary .pricing-aside {
    grid-column: 2;
  }
  .pricing-grid-primary .pricing-desc {
    min-height: 0;
  }
  .pricing-grid-primary .pricing-rate-ref {
    text-align: left;
    margin-bottom: 0;
    margin-top: 0.75rem;
  }
  .pricing-grid-primary .pricing-features {
    margin: 0;
  }
  .pricing-grid-primary .pricing-footer {
    margin-top: 0;
  }
  .pricing-grid-primary .pricing-footer .btn {
    width: auto;
  }
  .pricing-grid-primary .price-value {
    font-size: 1.45rem;
  }
  .pricing-grid-primary .pricing-price {
    min-height: 0;
    margin-bottom: 0.45rem;
  }
}
.pricing-grid-secondary {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  grid-template-columns: 1fr;
  margin: 0;
}
@media (min-width: 800px) {
  .pricing-grid-secondary .pricing-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    column-gap: 3rem;
    row-gap: 0.35rem;
    align-items: center;
    padding: 1.75rem 2.25rem;
    height: auto;
  }
  .pricing-grid-secondary .pricing-head {
    grid-column: 1;
    margin-bottom: 0;
  }
  .pricing-grid-secondary .pricing-aside {
    grid-column: 2;
  }
  .pricing-grid-secondary .pricing-desc {
    min-height: 0;
  }
  .pricing-grid-secondary .pricing-rate-ref {
    text-align: left;
    margin: 0.65rem 0 0;
  }
  .pricing-grid-secondary .pricing-features {
    margin: 0;
  }
  .pricing-grid-secondary .pricing-footer {
    margin-top: 0;
  }
  .pricing-grid-secondary .pricing-footer .btn {
    width: auto;
  }
  .pricing-grid-secondary .pricing-price {
    min-height: 0;
    margin-bottom: 0.4rem;
  }
  .pricing-grid-secondary .price-value {
    font-size: 1.35rem;
  }
}
.pricing-lead-time-grid {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.pricing-lead-time-grid--accent {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent-ring);
}
.pricing-lead-time-grid--muted {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-savings {
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  border: 1px dashed var(--accent-ring);
}
.pricing-rate-ref {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-badge-inline {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 0.2rem;
}
.pricing-badge-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.2rem 0 0.85rem;
}
.pricing-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  border-color: var(--accent);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  background-color: var(--bg-alt);
  box-shadow: var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-ink);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-head {
  margin-bottom: 1.5rem;
  text-align: left;
}
.pricing-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.pricing-title-row--between {
  justify-content: space-between;
  gap: 0.5rem;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.2;
  text-align: left;
}
.pricing-price {
  min-height: 2.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.price-prefix {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.price-value {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.price-period {
  font-size: 0.825rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  min-height: 52px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.925rem;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}
.pricing-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
.pricing-aside .pricing-features {
  flex-grow: 0;
  margin-bottom: 0;
}
.pricing-aside .pricing-footer {
  margin-top: 0;
  padding-left: 1.5rem;
}
.pricing-footer {
  margin-top: auto;
}

/* Pricing Breakdown Box */
.pricing-breakdown {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border-color, #2d353e);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #9da8b6;
  gap: 0.5rem;
}
.breakdown-row span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breakdown-row strong {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.breakdown-row--lead {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 0.6rem;
  margin-top: 0.1rem;
  color: #3b9b7e;
}
.breakdown-row--lead span,
.breakdown-row--lead strong {
  color: #3b9b7e;
  font-weight: 600;
}

.cost-comparison-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-color, #333d47);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.cost-comparison-note strong {
  color: #fff;
}

/* Support & Panels */
.support-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2d353e);
  border-radius: 8px;
  padding: 1.35rem 1.75rem;
  margin: 1.5rem 0 2rem;
  width: 100%;
  max-width: none;
  text-align: left;
}
.support-info-item {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.support-info-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.925rem;
}
.compare-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.85rem;
  margin-bottom: 0.45rem;
}
.compare-head strong {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.925rem;
}
.savings-badge {
  display: inline-block;
  margin-left: auto;
  background-color: #3b9b7e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}
.compare-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2d353e);
  border-radius: 8px;
  padding: 1.35rem 1.75rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.compare-intro {
  margin: 0 0 1.1rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.compare-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.compare-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color, #2d353e);
  border-radius: 8px;
}
.compare-col-label {
  font-size: 0.8rem;
  color: #9da8b6;
}
.compare-col-price {
  display: block;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.compare-col-note {
  font-size: 0.75rem;
  color: #7b8794;
}
.compare-col--kalyco {
  border-color: #3b9b7e;
  background: rgba(59, 155, 126, 0.1);
}
.compare-col--kalyco .compare-col-label,
.compare-col--kalyco .compare-col-price,
.compare-col--kalyco .compare-col-note {
  color: #3b9b7e;
}
.compare-col--kalyco .compare-col-note {
  color: #7dceb4;
}

/* B2B Card Panel */
.b2b-card {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.b2b-card-body {
  max-width: 720px;
}
.b2b-card-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64ffda;
  margin-bottom: 0.35rem;
}
.b2b-card-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.b2b-card-text {
  font-size: 0.925rem;
  color: #9da8b6;
  margin: 0;
  line-height: 1.5;
}
.b2b-card-action {
  flex-shrink: 0;
}

.support-notice {
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.support-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.support-text strong {
  color: var(--text);
  margin-right: 0.35rem;
}
.support-text a {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.support-text a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    cursor: copy;
  }
}
a[href^="tel:"].is-copied::after {
  content: " — kopiert";
  font-weight: 500;
  color: var(--accent);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
.about-photo {
  margin: 0;
  justify-self: center;
  width: min(100%, 280px);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
}
.about-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 0.35rem;
}
.about-role {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.about-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
}
.about-copy p + p {
  margin-top: 1rem;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 1.5rem;
}
.about-links .about-link {
  margin-top: 0;
}
.about-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.about-link:hover {
  border-bottom-color: var(--accent);
}

/* ===== Case snippet ===== */
.case-snippet {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.case-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.case-snippet h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 1rem;
}
.case-snippet p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-details {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}
.contact-details li {
  display: grid;
  gap: 0.15rem;
}
.contact-details strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.contact-details a:hover {
  color: var(--accent);
}
.contact-contract-note {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 36rem;
}
.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.field .optional {
  color: var(--text-muted);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a9a297' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.field select option {
  background-color: var(--bg);
  color: var(--text);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.72;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid {
  border-color: #ef4444 !important;
  outline: none !important;
  background-color: rgba(239, 68, 68, 0.08) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}
.field textarea {
  resize: vertical;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success {
  color: var(--accent);
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.35);
  border-radius: 6px;
  padding: 0.85rem 1rem;
}
.form-status.error {
  color: #ff8d7a;
}
.form-legal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.9rem;
  max-width: 300px;
  font-size: 0.95rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer-nav h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.footer-nav a {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  padding-block: 0.3rem;
  opacity: 0.85;
}
.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a:hover {
  color: var(--accent);
}

/* ===== Legal pages ===== */
.legal-page {
  padding-top: 3rem;
}
.legal-content {
  max-width: 720px;
}
.legal-content--wide {
  max-width: 52rem;
}
.legal-content--wide .card--featured-offer {
  margin-top: 2.5rem;
  margin-bottom: 1.75rem;
}
.team-compare-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  margin: 2.75rem 0 1rem;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.team-compare {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.team-compare th,
.team-compare td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.team-compare thead th {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--surface-2);
}
.team-compare td {
  color: var(--text-muted);
}
.team-compare tbody tr:last-child th,
.team-compare tbody tr:last-child td {
  border-bottom: none;
}
.team-compare td:last-child {
  color: var(--accent);
  font-weight: 600;
}
.team-compare-note {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.55;
}
.rate-compare {
  margin: 1.5rem 0 0;
}
.rate-note {
  margin-top: 1.25rem !important;
  text-align: left;
  max-width: none;
}
.legal-head {
  margin-bottom: 2.5rem;
}
.legal-head h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}
.legal-body h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-body p,
.legal-body li {
  color: var(--text-muted);
  font-size: 1rem;
}
.legal-body p + p {
  margin-top: 0.85rem;
}
.legal-aside {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0.85rem 1rem;
  border-left: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}
.legal-body a:not(.btn) {
  color: var(--accent);
}
.legal-body a:not(.btn):hover {
  text-decoration: underline;
}
.legal-body a.btn-primary,
.legal-body a.btn-primary:hover {
  color: var(--accent-ink);
  text-decoration: none;
}
.topic-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}
.legal-note {
  margin-top: 2.5rem !important;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.92rem !important;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cost-compare {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .compare-cols {
    grid-template-columns: 1fr;
  }
  .cost-divider {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -1rem 0;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .b2b-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .b2b-card-action {
    width: 100%;
  }
  .b2b-card-action .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards.cards-stack {
    grid-template-columns: 1fr;
  }
  .cards-three {
    grid-template-columns: 1fr;
  }
  .agencies-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }
  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }
  .why-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-points > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  :root {
    --page-gutter: 2rem;
  }
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }
  .hero-cta .btn {
    width: auto;
  }
  .hero-cta-note {
    flex-basis: 100%;
  }
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.15rem;
  }
  .cards-two {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .agencies-points--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
  .about-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 4rem;
  }
  .about-photo {
    justify-self: start;
    width: 280px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 1100px) {
  .main-nav {
    display: flex;
  }
  .nav-toggle,
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 420px) {
  .header-cta {
    padding-inline: 0.65rem;
    font-size: 0.78rem;
  }
}

/* ===== Maintenance overlay =====
   Ein/Aus nur in index.html: style="display: none;" (Live) oder display: flex (Wartung). */
#maintenance-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg);
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text);
}
#maintenance-overlay h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.maintenance-overlay-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.maintenance-overlay-contact {
  font-size: 1rem;
}
.maintenance-overlay-contact a {
  color: var(--accent);
  text-decoration: underline;
  margin-top: 0.5rem;
  display: inline-block;
}

.icon-inline {
  margin-right: 6px;
  vertical-align: text-bottom;
  display: inline-block;
}
.agencies-points--spaced {
  margin-bottom: 0;
}
.contact-cal-action {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-cal-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== Werdegang ===== */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  border-left: 1px solid var(--border);
}
.timeline li {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-when {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.timeline h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.timeline p {
  margin: 0;
}