/* ============================================
   Kapy — Test Website (Claude · 04.05) v3
   Worldline-style: clean, professional, single-accent
   ============================================ */

:root {
  /* Swiss-Tech v2.0 (ADR-0096) — Off-Black + Swiss-Red + Cool Zinc */
  --ink: #18181b; /* primary-900 Off-Black */
  --ink-soft: #27272a; /* primary-800 */
  --muted: #71717a; /* primary-500 */
  --line: #e4e4e7; /* primary-200 / Cool Zinc */
  --line-2: #f4f4f5; /* primary-100 */
  --paper: #ffffff;
  --mist: #fafafa; /* primary-50 */
  --sand: #f4f4f5; /* primary-100 (Cool Zinc, kein warmer Sand mehr) */

  --accent: #dc0018; /* accent-500 Swiss-Red Brand-Core */
  --accent-soft: #ffe4e6; /* accent-100 */
  --accent-deep: #a50d26; /* accent-700 Hover */

  --radius: 4px; /* Swiss-Tech Sharp — Stripe-Niveau (war 8px) */
  --radius-sm: 2px; /* Buttons, Pills, kleine Tags */
  --shadow-sm: 0 4px 14px rgba(24, 24, 27, 0.05);
  --shadow: 0 18px 38px rgba(24, 24, 27, 0.08);

  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 2px;
}
.skip-link:focus {
  top: 16px;
}

.container {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.notice {
  min-height: 32px;
  background: var(--mist);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  padding: 6px 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.notice strong {
  color: var(--ink);
  font-weight: 700;
}
.notice .dot {
  color: var(--muted);
}
.ch-flag {
  display: inline-flex;
}

/* Topbar (sub-header line) */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.topbar-inner {
  width: calc(100% - 40px);
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  min-height: 36px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-item {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.topbar-item:hover {
  color: var(--ink);
}
.topbar-divider {
  width: 1px;
  height: 14px;
  background: var(--line);
  display: inline-block;
}
.topbar-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a8b3a;
  display: inline-block;
}
.topbar-langs {
  display: inline-flex;
  gap: 8px;
}
.topbar-lang {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 3px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.topbar-lang:hover {
  color: var(--ink);
}
.topbar-lang.is-active {
  color: var(--ink);
  background: var(--mist);
}

/* Dropdown nav */
.nav-group {
  position: relative;
}
.nav-group > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -14px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s;
  z-index: 50;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 2px;
  min-height: 0;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}
.nav-dropdown a:hover {
  background: var(--mist);
  color: var(--ink);
}
.nav-dropdown .nav-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

.nav-shell {
  width: calc(100% - 40px);
  max-width: 1240px;
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand--foot .brand-logo {
  height: 32px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.primary-nav a,
.text-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}
.primary-nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.nav-toggle:hover {
  border-color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  transform-origin: center;
}
.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #27272a;
}

/* btn-light defined below near contact-band (dark fill on light bg) */

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 27, 44, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 27, 44, 0.04) 1px, transparent 1px), var(--sand);
  background-size: 64px 64px;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0) 0%, rgba(247, 244, 238, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: var(--accent);
  opacity: 1;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-metrics {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 18px;
}
.hero-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.hero-metrics dt {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ===== Proof Strip (legacy) ===== */
.proof-strip {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 14px;
  font-weight: 600;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 14px 0;
}

/* ===== Logos (customer carousel) ===== */
.logos {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 32px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.logos-grid img {
  max-height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logos-grid img:hover {
  transform: scale(1.05);
}

/* ===== Customer Logo Carousel (auto-scroll, pause on hover) ===== */
.logos-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: kapy-logos-scroll 40s linear infinite;
}
.logos-track img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(40%);
  opacity: 0.85;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}
.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
.logos-carousel:hover .logos-track {
  animation-play-state: paused;
}
@keyframes kapy-logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.logos-cta {
  text-align: center;
  margin: 32px 0 0;
  font-size: 14px;
}
.logos-cta a {
  color: var(--accent);
  font-weight: 700;
}
.logos-cta a:hover {
  text-decoration: underline;
}

/* Hero bullets */
.hero-bullets {
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.hero-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.accent-text {
  color: var(--accent);
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}
.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section p {
  color: var(--muted);
  line-height: 1.7;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head p:last-child {
  font-size: 17px;
  margin-top: 16px;
}

.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: start;
}
.intro-grid p {
  margin-bottom: 18px;
  font-size: 17px;
}
.intro-grid p:last-child {
  margin-bottom: 0;
}

/* ===== Product Grid (2 main) ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}
.product-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.product-card > span:first-child {
  align-self: flex-start;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}
.product-card > p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}
.product-card .check-list {
  margin: 4px 0 0;
}
.product-card__price {
  margin-top: auto;
  padding: 22px 0 4px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.product-card__price strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.product-card__price strong em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}
.product-card__price span {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}
.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-card__actions .btn {
  flex: 1;
}

/* ===== Services Tile Grid (premium, freischwebende Cards) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  align-items: stretch;
}
/* Bei 6 Items: forciere 3×2 statt 4+2-Layout */
.services-grid:has(> :nth-child(6):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
/* Bei 4 Items: forciere 2×2 statt 4+0-Layout */
.services-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.services-grid--compact .service-tile {
  min-height: 0;
}
.service-tile {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  isolation: isolate;
  min-height: 220px;
}
/* Coral-Line bottom — slides in on hover */
.service-tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
  z-index: 1;
}
.service-tile:hover {
  background: #fff;
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(24, 24, 27, 0.08);
}
.service-tile:hover::before {
  width: 100%;
}
.service-tile h4 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.service-tile p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.service-tile span {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.service-tile:hover span {
  gap: 10px;
}

/* Dark variant — for accent-tile in a row */
.service-tile.is-accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.service-tile.is-accent h4,
.service-tile.is-accent p,
.service-tile.is-accent span {
  color: #fff;
}
.service-tile.is-accent p {
  color: rgba(255, 255, 255, 0.7);
}
.service-tile.is-accent span {
  color: var(--accent);
}
.service-tile.is-accent:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-tile.is-accent::before {
  background: var(--accent);
}

@media (max-width: 980px) {
  .services-grid:has(> :nth-child(6):last-child),
  .services-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid,
  .services-grid:has(> :nth-child(6):last-child),
  .services-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-tile {
    padding: 28px 24px;
    min-height: 0;
  }
  .service-tile h4 {
    font-size: 19px;
  }
}

/* ===== Solutions (legacy 3-card) ===== */
.solutions {
  background: var(--mist);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}
.solution-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.solution-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.solution-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.solution-card p {
  margin: 14px 0 24px;
  font-size: 15px;
}
.solution-card a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.solution-card a:hover {
  color: var(--accent);
}

/* ===== Operations (Light Section, formerly dark) ===== */
.operations {
  background: var(--mist);
  padding: 96px 0;
}
.operations h2,
.operations .ops-copy p,
.operations .check-list {
  color: var(--ink);
}
.operations .ops-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
  font-size: 17px;
}
.operations .eyebrow {
  color: var(--accent);
}
.operations .check-list li {
  color: var(--ink-soft);
}
.ops-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 64px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.ops-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.panel-top {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.panel-top strong {
  font-size: 15px;
}
.panel-top span {
  color: var(--muted);
  font-size: 13px;
}

.order-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line-2);
  padding: 8px 0;
}
.order-row:last-of-type {
  border-bottom: 0;
}
.order-row > strong {
  font-size: 13px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.order-row > div strong {
  display: block;
  font-size: 14px;
}
.order-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.order-row.is-active {
  background: var(--accent-soft);
  margin: 0 -10px;
  padding: 8px 10px;
  border-radius: 2px;
  border-bottom: 0;
}

.status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-prep {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.status-driver {
  background: var(--mist);
  color: var(--ink-soft);
}
.status-ready {
  background: #def1e1;
  color: #1a6b33;
}

.route-map {
  position: relative;
  height: 160px;
  margin-top: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(14, 27, 44, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 27, 44, 0.06) 1px, transparent 1px), var(--mist);
  background-size: 24px 24px;
  overflow: hidden;
}
.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(221, 55, 37, 0.16);
  z-index: 2;
}
.pin-a {
  left: 18%;
  top: 60%;
}
.pin-b {
  left: 50%;
  top: 28%;
}
.pin-c {
  left: 76%;
  top: 64%;
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(14, 27, 44, 0.12);
}
.route-line {
  position: absolute;
  left: 22%;
  top: 36%;
  width: 56%;
  height: 50px;
  border-top: 2px dashed var(--accent);
  border-right: 2px dashed var(--accent);
  border-top-right-radius: 6px;
  opacity: 0.5;
}

/* ===== Calculator ===== */
.calculator {
  background: var(--sand);
}
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
}
.calc-grid > div:first-child p {
  margin-top: 16px;
  font-size: 17px;
}

.calc-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.calc-box label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
}
.calc-box label > span {
  grid-column: 1;
}
.calc-box label > input {
  grid-column: 1 / -1;
  order: 2;
}
.calc-box label > output {
  grid-column: 2;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
input[type='range'] {
  width: 100%;
  accent-color: var(--accent);
  height: 4px;
}
.calc-result {
  min-height: 130px;
  background: var(--sand);
  color: var(--ink);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px;
  margin-top: 8px;
}
.calc-result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.calc-result strong {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ===== Pricing ===== */
.pricing {
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-card h3 {
  margin: 12px 0 0;
  font-size: 24px;
}
.price-card p {
  margin: 14px 0 0;
  font-size: 15px;
}
.price-card strong {
  margin: auto 0 24px;
  padding-top: 28px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  display: block;
}
.price-card strong em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.price-card .btn {
  width: 100%;
}
.price-card.is-featured {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.price-card.is-featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.price-card.is-featured h3 {
  color: var(--ink);
}
.price-card.is-featured p {
  color: var(--muted);
}
.price-card.is-featured strong {
  color: var(--ink);
}
.price-card.is-featured strong em {
  color: var(--muted);
}
.price-card.is-featured span {
  color: var(--accent);
}

/* ===== Trust ===== */
.trust {
  background: var(--sand);
}
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: start;
}
.trust-grid > div:first-child > p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 17px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 24px;
  box-shadow: var(--shadow-sm);
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
}
.trust-row:last-child {
  border-bottom: 0;
}
.trust-row span {
  color: var(--muted);
}
.trust-row strong {
  color: var(--ink);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.faq-grid > div:first-child > p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 17px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  transition: border-color 0.15s ease;
}
details:hover {
  border-color: var(--ink);
}
details[open] {
  border-color: var(--ink);
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 22px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
details[open] summary::after {
  content: '−';
}
details p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== Contact Band ===== */
.contact {
  padding: 64px 0 96px;
}
.contact-band {
  border-radius: var(--radius);
  background: var(--sand);
  border: 1px solid var(--line);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--ink);
}
.contact-band h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  margin: 0;
}
.eyebrow-light {
  color: var(--accent) !important;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  background: #fff;
  border-color: var(--ink);
}
.btn-light {
  background: var(--ink);
  color: #fff;
}
.btn-light:hover {
  background: #27272a;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--mist);
  color: var(--ink-soft);
  padding: 64px 0 36px;
  border-top: 1px solid var(--line);
}
.brand--foot {
  margin-bottom: 16px;
}
.brand--foot .brand-mark {
  background: var(--accent);
}
.brand--foot .brand-text {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
}

/* Trust strip in footer */
.trust-strip {
  margin: 48px 0 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
}
.trust-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  max-width: 100%;
  color: var(--muted);
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  display: inline;
  min-height: auto;
  padding: 0;
}
.footer-legal a:hover {
  color: var(--accent);
}
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 12px;
  max-width: 340px;
}
.foot-small {
  font-size: 11px !important;
  color: var(--muted) !important;
  font-style: italic;
  opacity: 0.7;
}
.site-footer h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-footer a {
  display: block;
  min-height: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: var(--accent);
}

/* ===== Responsive ===== */
/* ==================== MOBILE TABLET (<= 920px) ==================== */
@media (max-width: 920px) {
  .topbar {
    display: none;
  }
  .notice {
    font-size: 11px;
    padding: 5px 12px;
  }
  .notice .dot {
    display: none;
  } /* Trennzeichen-Dots aus, kompakter */

  /* Nav-Shell: Logo links, Burger rechts */
  .nav-shell {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    min-height: 60px;
    padding: 0;
  }
  .nav-toggle {
    display: flex !important;
    justify-self: end;
    grid-row: 1;
    grid-column: 2;
  }
  .brand {
    grid-row: 1;
    grid-column: 1;
  }
  .brand-logo {
    height: 32px !important;
  }

  /* Nav + Actions versteckt — kommt erst beim is-open */
  .primary-nav,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
  }
  .nav-group {
    width: 100%;
  }
  .nav-group > a::after {
    display: none;
  }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 8px 0 8px 20px;
    margin-top: 4px;
    border-left: 2px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  /* Mobile-Menu open state — scrollable Panel */
  .site-header.is-open {
    box-shadow: 0 12px 30px rgba(24, 24, 27, 0.08);
  }
  /* Wrapper für Nav-Inhalt: eigener Scroll-Container, max bis Viewport-Bottom */
  .site-header.is-open .nav-shell {
    max-height: 100svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .site-header.is-open .primary-nav,
  .site-header.is-open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
  }
  .site-header.is-open .primary-nav {
    padding-top: 12px;
  }
  .site-header.is-open .nav-actions {
    padding: 12px 0 24px;
    border-top: 0;
    gap: 10px;
  }
  .site-header.is-open .primary-nav > a,
  .site-header.is-open .primary-nav .nav-group > a {
    width: 100%;
    padding: 12px 4px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--line-2);
    min-height: 44px;
    color: var(--ink) !important;
  }
  .site-header.is-open .nav-group .nav-dropdown a {
    padding: 8px 4px !important;
    font-size: 14px;
    min-height: 40px;
    color: var(--muted) !important;
  }
  .site-header.is-open .nav-actions .text-link {
    padding: 12px 4px;
    font-size: 16px;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--line-2);
    min-height: 44px;
  }
  .site-header.is-open .nav-actions .btn {
    width: 100%;
    margin-top: 6px;
    min-height: 48px;
    font-size: 15px;
  }

  /* Hero polish — Mobile (Tablet) */
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 32px 0 44px;
  }
  .hero h1 {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.05;
  }
  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 18px;
  }
  .hero-bullets {
    margin-top: 22px;
    gap: 8px;
  }
  .hero-bullets li {
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 26px;
  }

  /* Grid-Kollabs auf 1 Spalte */
  .hero-metrics,
  .proof-grid,
  .solution-grid,
  .pricing-grid,
  .product-grid,
  .intro-grid,
  .ops-grid,
  .calc-grid,
  .trust-grid,
  .faq-grid,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* Services-Tiles: 2-Spalten ab 600px, 1-Spalten <600px */
  .services-grid,
  .services-grid:has(> :nth-child(6):last-child),
  .services-grid:has(> :nth-child(4):last-child),
  .services-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .proof-grid {
    padding: 18px 0;
    gap: 8px;
  }
  .section {
    padding: 56px 0;
  }
  .operations {
    padding: 56px 0;
  }
  .contact-band {
    padding: 28px 24px;
    text-align: center;
  }
  .contact-band h2 {
    max-width: 100%;
    font-size: 24px;
  }
  .contact-actions {
    justify-content: center;
  }

  /* Order Form (kaufen.html) — Pakete-Karten kollabieren */
  .buy-product {
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
  }
  .buy-product__price {
    grid-column: 2;
    text-align: right;
  }
  .buy-sub {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }
  .buy-sub__price {
    grid-column: 1 / -1;
    text-align: right;
    padding-left: 22px;
    font-size: 11px;
  }
}

/* ==================== MOBILE SMARTPHONE (<= 640px) ==================== */
@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: calc(100% - 28px);
  }
  .notice {
    display: none;
  } /* Notice-Bar weg auf Smartphone — Topbar+Header reichen */

  /* Hero auf Smartphone deutlich entschlackt */
  .hero-content {
    padding: 28px 0 36px;
  }
  .hero .eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(26px, 8.5vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 14px;
    max-width: 100%;
  }
  .hero-bullets {
    display: none;
  } /* Bullets aus — Lead trägt die Kern-Botschaft */
  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    gap: 10px;
  }
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }
  .btn:not(.btn-block):not(.nav-actions .btn):not(.hero-form-card .btn) {
    width: 100%;
  }

  .hero-metrics {
    gap: 12px;
  }
  .solution-card,
  .price-card,
  .calc-box,
  .product-card,
  .trust-card {
    padding: 22px 18px;
  }
  .order-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }

  /* Services 1-Spalte */
  .services-grid,
  .services-grid:has(> :nth-child(6):last-child),
  .services-grid:has(> :nth-child(4):last-child),
  .services-grid--compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-tile {
    padding: 24px 22px;
    min-height: 0;
  }
  .service-tile h4 {
    font-size: 18px;
  }

  /* Section-Heads */
  .section-head {
    margin-bottom: 32px;
  }
  .section h2,
  .section .section-head h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  .section-head p {
    font-size: 15px;
  }

  /* Logo-Strip kleiner */
  .logos {
    padding: 36px 0 32px;
  }
  .logos-grid img {
    max-height: 36px;
    max-width: 100px;
  }

  /* Footer kompakter */
  .footer-grid {
    gap: 28px !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Forms */
  .order-fieldset {
    padding: 16px 14px;
  }
  .form-grid {
    gap: 8px;
  }
  .check-box,
  .radio-box {
    padding: 10px 12px;
  }

  /* Buy-Total kompakt */
  .buy-total {
    padding: 10px 0;
  }
  .buy-total > strong {
    font-size: 18px;
  }
}

/* ==================== STICKY-HEADER SCROLL-SHADOW ==================== */
.site-header.is-scrolled {
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.06);
}

/* ==================== Cookie-Consent-Banner ==================== */
#kapy-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
.kc-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kc-banner__text {
  flex: 1 1 320px;
  color: rgba(255, 255, 255, 0.85);
}
.kc-banner__text strong {
  color: #fff;
}
.kc-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kc-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.kc-btn {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.kc-btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.kc-btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.kc-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.kc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 540px) {
  #kapy-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }
  .kc-banner__actions {
    width: 100%;
  }
  .kc-btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }
}

/* ============ Hero-Split (kaufen.html — Form rechts neben Hero) ============ */
.hero--split {
  padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 7vw, 96px);
  align-items: start;
}
.hero-content--split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(440px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.hero--split .hero-side {
  position: sticky;
  top: 96px;
  align-self: start;
  padding-top: 12px;
}
.hero-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  box-shadow: 0 8px 22px rgba(24, 24, 27, 0.04);
  position: relative;
  z-index: 2;
}
.hero-form-card__head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hero-form-card__head h2 {
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 6px 0 6px;
  color: var(--ink);
}
.hero-form-card__head p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.hero-form-card .order-form {
  gap: 14px;
}
.hero-form-card .order-fieldset {
  padding: 14px 16px 16px;
  border-radius: var(--radius);
}
.hero-form-card .order-fieldset legend {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-left: 8px;
  padding: 0 6px;
}
.hero-form-card .form-grid {
  gap: 10px;
}
.hero-form-card .field input,
.hero-form-card .field select,
.hero-form-card .field textarea {
  padding: 9px 11px;
  font-size: 13px;
}
.hero-form-card .field span {
  font-size: 11px;
}
.hero-form-card .buy-product {
  padding: 12px 14px;
  gap: 10px;
}
.hero-form-card .buy-product__info strong {
  font-size: 14px;
}
.hero-form-card .buy-product__info em {
  font-size: 12px;
}
.hero-form-card .buy-product__price {
  font-size: 13px;
}
.hero-form-card .buy-product__sub {
  margin-left: 24px;
  padding-left: 10px;
}
.hero-form-card .radio-box {
  padding: 10px 12px;
}
.hero-form-card .radio-box span strong {
  font-size: 13px;
}
.hero-form-card .radio-box span em {
  font-size: 11px;
}
.hero-form-card .order-submit {
  padding: 14px 0 4px;
}
.hero-form-card .order-submit .btn-lg {
  width: 100%;
  min-width: 0;
  padding: 13px 22px;
  font-size: 14px;
}
.hero-form-card .form-hint {
  font-size: 11px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .hero-content--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero--split .hero-side {
    position: static;
    top: auto;
  }
}
@media (max-width: 640px) {
  .hero-form-card {
    padding: 22px;
  }
  .hero-form-card .order-fieldset {
    padding: 16px;
  }
}

/* ============ Buy-Form Pakete (kaufen.html) ============ */
.buy-products {
  display: grid;
  gap: 12px;
}
.buy-product {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.buy-product:hover {
  border-color: var(--ink-soft);
}
.buy-product:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.buy-product > input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}
.buy-product__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.buy-product__info strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}
.buy-product__info em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.buy-product__price {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.buy-product--soon {
  background: var(--mist);
  border-style: dashed;
}
.buy-product--soon:has(input:checked) {
  background: var(--accent-soft);
  border-style: solid;
}
.buy-product__price--soon {
  color: var(--accent);
}
.buy-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 3px;
  padding: 2px 6px;
  letter-spacing: 0.08em;
  margin-left: 6px;
  vertical-align: 2px;
}
.buy-product__sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 30px;
  margin-top: -4px;
  margin-bottom: 4px;
  padding: 4px 0;
  border-left: 2px solid var(--line);
  padding-left: 14px;
}
.buy-sub {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease;
}
.buy-sub:hover {
  background: var(--mist);
}
.buy-sub > input[type='checkbox'] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--accent);
}
.buy-sub__price {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  font-size: 12px;
}

.buy-total {
  margin: 4px 0 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.buy-total > span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.buy-total > strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.buy-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}
.buy-status--ok {
  background: #e6f4ea;
  color: #1a6b33;
  border: 1px solid #1a8b3a;
}
.buy-status--err {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid var(--accent);
}

@media (max-width: 640px) {
  .buy-product {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .buy-product__price {
    grid-column: 1 / -1;
    text-align: right;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  .buy-product__sub {
    margin-left: 0;
  }
  .buy-sub {
    grid-template-columns: auto 1fr;
  }
  .buy-sub__price {
    grid-column: 1 / -1;
    text-align: right;
    padding-left: 24px;
  }
}

/* ============ Order Form (kaufen.html) ============ */
.order-form {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.order-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}
.order-fieldset legend {
  padding: 0 8px;
  margin-left: 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.order-fieldset--legal {
  background: var(--mist);
  border-color: var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.field--full {
  grid-column: 1 / -1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 0, 24, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
.check-grid,
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.check-box,
.radio-box {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
  background: #fff;
}
.check-box:hover,
.radio-box:hover {
  border-color: var(--ink-soft);
}
.check-box input,
.radio-box input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.check-box input:checked + .check-box__label,
.radio-box input:checked ~ span {
  color: var(--ink);
}
.check-box:has(input:checked),
.radio-box:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.check-box__label,
.radio-box span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.check-box__label strong,
.radio-box span strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.check-box__label em,
.radio-box span em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
}
.check-box--legal {
  background: transparent;
  border-color: transparent;
  padding: 4px 0;
}
.check-box--legal:hover {
  border-color: transparent;
}
.check-box--legal:has(input:checked) {
  background: transparent;
  border-color: transparent;
}
.check-box--legal .check-box__label {
  color: var(--ink-soft);
  font-size: 13px;
}
.check-box--legal a {
  color: var(--accent);
  text-decoration: underline;
}
.form-hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.form-hint a {
  color: var(--accent);
  font-weight: 600;
}
.order-submit {
  text-align: center;
  padding: 20px 0 8px;
}
.order-submit .btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  min-width: 280px;
}
.order-submit .form-hint {
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .order-fieldset {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .check-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }
  .order-submit .btn-lg {
    width: 100%;
    min-width: 0;
  }
}

/* ============ Google Brand-Logo-Farben (für "Google"-Erwähnungen) ============ */
.g-google {
  display: inline;
  font-weight: inherit;
  letter-spacing: -0.01em;
}
.g-google > span:nth-child(1) {
  color: #4285f4;
} /* G - blau */
.g-google > span:nth-child(2) {
  color: #ea4335;
} /* o - rot */
.g-google > span:nth-child(3) {
  color: #fbbc05;
} /* o - gelb */
.g-google > span:nth-child(4) {
  color: #4285f4;
} /* g - blau */
.g-google > span:nth-child(5) {
  color: #34a853;
} /* l - grün */
.g-google > span:nth-child(6) {
  color: #ea4335;
} /* e - rot */

/* ============ WhatsApp FAB (Conversion-Tool aus alter kapy.ch) ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ============ Mobile-CTA-Bar (Conversion-Tool aus alter kapy.ch) ============ */
.kapy-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(24, 24, 27, 0.08);
}
.kapy-mobile-cta-bar a {
  flex: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.kapy-mobile-cta-bar .cta-call {
  background: var(--mist);
  color: var(--ink);
  border: 1px solid var(--line);
}
.kapy-mobile-cta-bar .cta-call:hover {
  background: var(--line-2);
}
.kapy-mobile-cta-bar .cta-call svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.kapy-mobile-cta-bar .cta-demo {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.kapy-mobile-cta-bar .cta-demo:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

@media (max-width: 720px) {
  .kapy-mobile-cta-bar {
    display: flex;
  }
  .whatsapp-fab {
    bottom: calc(88px + env(safe-area-inset-bottom));
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

/* ===== Screenshot showcase sections (E-MARKETING-SSG-10-10 Phase B) ===== */
.screenshot-section {
  padding: 64px 0;
  background: var(--bg, #f8f6f0);
}
.screenshot-section.alt {
  background: #fff;
}
.screenshot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.screenshot-row.reverse .screenshot-text {
  order: 2;
}
.screenshot-row.reverse .screenshot-img {
  order: 1;
}
.screenshot-text h2 {
  margin: 8px 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}
.screenshot-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft, #444);
  margin: 0 0 14px;
}
.screenshot-text .check-list {
  margin-top: 16px;
}
.screenshot-img {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 14px 40px rgba(11, 11, 11, 0.12),
    0 2px 6px rgba(11, 11, 11, 0.06);
  background: #fff;
}
.screenshot-img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-tile.static {
  cursor: default;
}
.service-tile.static:hover {
  transform: none;
}

@media (max-width: 900px) {
  .screenshot-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .screenshot-row.reverse .screenshot-text {
    order: 0;
  }
  .screenshot-row.reverse .screenshot-img {
    order: 0;
  }
  .screenshot-section {
    padding: 40px 0;
  }
}

/* ===== Liefersoftware release page (2026 product proof refresh) ===== */
.release-hero,
.release-hero * {
  letter-spacing: 0;
}
.release-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  background-size: 44px 44px, 44px 44px, auto;
  border-bottom: 1px solid var(--line);
  padding: 58px 0 34px;
  overflow: hidden;
}
.release-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.release-hero__copy {
  padding: 18px 0;
}
.release-hero h1 {
  font-size: clamp(36px, 3.65vw, 56px);
  line-height: 1.02;
  max-width: 640px;
  letter-spacing: 0;
}
.release-hero .hero-lead {
  color: #364152;
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 680px;
  margin-top: 22px;
}
.release-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.release-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.release-proof span {
  border: 1px solid #d6dde8;
  background: #fff;
  color: #334155;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}
.release-hero__screen {
  margin: 0;
  width: 100%;
  max-width: 860px;
  justify-self: end;
  border: 1px solid #cfd7e3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.18);
  background: #fff;
}
.release-hero__screen img {
  width: 100%;
  display: block;
}
.release-strip {
  background: #111827;
  color: #fff;
  padding: 18px 0;
}
.release-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.release-strip__grid div {
  border-left: 2px solid #dc0018;
  padding: 4px 0 4px 14px;
}
.release-strip strong,
.release-strip span {
  display: block;
}
.release-strip strong {
  font-size: 14px;
}
.release-strip span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 3px;
}
.section-head--wide {
  max-width: 860px;
}
.release-showcase {
  background: #fff;
}
.release-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.release-screen-card {
  border: 1px solid #d9e1ec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}
.release-screen-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.release-screen-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: #f8fafc;
}
.release-screen-card > div {
  padding: 24px;
}
.release-screen-card h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: 0;
  margin: 6px 0 12px;
}
.release-screen-card p:not(.eyebrow) {
  color: #475569;
  font-size: 16px;
}
.release-workflow,
.release-operations {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.release-operations .section-head {
  max-width: 880px;
}
.release-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid #d9e1ec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.release-timeline article {
  border: 0;
  border-right: 1px solid #e2e8f0;
  background: transparent;
  border-radius: 0;
  padding: 18px 16px;
  min-height: 0;
  box-shadow: none;
}
.release-timeline article:last-child {
  border-right: 0;
}
.release-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}
.release-timeline h3 {
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 0;
}
.release-timeline p {
  display: none;
  color: #475569;
}
.release-dark,
.release-feature-grid {
  display: none;
}
.anchor-target {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 120px;
}
.product-card[id] {
  scroll-margin-top: 120px;
}
.release-dark {
  background: #111827;
  color: #fff;
}
.release-dark h2,
.release-dark h3 {
  color: #fff;
  letter-spacing: 0;
}
.release-dark p {
  color: #cbd5e1;
  font-size: 17px;
  margin-top: 14px;
}
.release-dark__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}
.release-dark__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.release-dark__cards div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px;
}
.release-dark__cards strong,
.release-dark__cards span {
  display: block;
}
.release-dark__cards strong {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}
.release-dark__cards span {
  color: #cbd5e1;
  line-height: 1.5;
}
.release-feature-grid {
  background: #fff;
}
.release-pricing {
  background: #f8fafc;
  border-top: 1px solid var(--line);
}
.release-pricing .product-card--featured {
  border-color: rgba(220, 0, 24, 0.28);
  box-shadow: 0 22px 48px rgba(220, 0, 24, 0.08);
}

@media (max-width: 1100px) {
  .release-hero__grid {
    grid-template-columns: 1fr;
  }
  .release-hero__screen {
    width: 100%;
    justify-self: stretch;
  }
  .release-strip__grid,
  .release-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .release-dark__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .release-hero {
    padding: 36px 0 26px;
  }
  .release-hero__grid {
    gap: 18px;
  }
  .release-hero__copy {
    display: contents;
  }
  .release-hero__copy .eyebrow {
    order: 1;
  }
  .release-hero__copy h1 {
    order: 2;
    font-size: 34px;
  }
  .release-hero__copy .hero-lead {
    order: 3;
    font-size: 16px;
    margin-top: 0;
  }
  .release-hero__screen {
    order: 4;
    border-radius: 10px;
  }
  .release-hero__actions,
  .release-hero__actions .btn {
    width: 100%;
  }
  .release-hero__actions {
    order: 5;
    margin-top: 0;
  }
  .release-proof {
    order: 6;
    margin-top: 0;
  }
  .release-strip__grid,
  .release-screens,
  .release-screen-card--wide,
  .release-timeline,
  .release-dark__cards {
    grid-template-columns: 1fr;
  }
  .release-screen-card--wide {
    display: block;
  }
  .release-screen-card img {
    min-height: 220px;
  }
}

/* ===== Homepage first-release hero ===== */
.home-product-hero,
.home-product-hero * {
  letter-spacing: 0;
}
.home-product-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  background-size: 46px 46px, 46px 46px, auto;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 58px 0 44px;
  overflow: hidden;
}
.home-product-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}
.home-product-hero .hero-lead {
  color: #344054;
  font-size: clamp(17px, 1.7vw, 22px);
  margin-top: 20px;
  max-width: 700px;
}
.home-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
}
.home-product-hero__copy {
  position: relative;
  z-index: 1;
}
.home-product-hero__screen {
  margin: 0;
  border: 1px solid #cfd7e3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 26px 66px rgba(15, 23, 42, 0.16);
  background: #fff;
}
.home-product-hero__screen img {
  width: 100%;
  display: block;
}
.home-product-hero .release-proof span {
  background: #fff;
  border-color: #d6dde8;
  color: #334155;
}

@media (max-width: 1100px) {
  .home-product-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-product-hero {
    padding: 36px 0 28px;
  }
}

/* ===== Demo page product hero ===== */
.demo-product-hero,
.demo-product-hero * {
  letter-spacing: 0;
}
.demo-product-hero {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 54px 0 44px;
}
.demo-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 36px;
  align-items: center;
}
.demo-product-hero h1 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}
.demo-product-hero .hero-lead {
  color: #364152;
  font-size: clamp(17px, 1.55vw, 21px);
  margin-top: 20px;
}
.demo-product-hero figure {
  margin: 0;
  border: 1px solid #cfd7e3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
  background: #fff;
}
.demo-product-hero figure img {
  width: 100%;
  display: block;
}

@media (max-width: 1100px) {
  .demo-product-hero__grid {
    grid-template-columns: 1fr;
  }
}
