@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #900D01;
  --red-dark:   #6e0a00;
  --red-light:  #fdeaea;
  --white:      #ffffff;
  --gray-50:    #f9f9f9;
  --gray-100:   #f2f2f2;
  --gray-200:   #e5e5e5;
  --gray-400:   #a0a0a0;
  --gray-600:   #666666;
  --gray-800:   #222222;
  --font:       'Comfortaa', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --section-bg: #eef0f2;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --max-w:      min(95%, 1170px);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, [onclick], [role="button"], select, label[for], input[type="checkbox"], input[type="radio"], input[type="range"] { cursor: pointer; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--section-bg);
}

.section--red {
  background: var(--red);
  color: var(--white);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

.section__label {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section__subtitle,
.section__subtitle.text-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-group .btn {
  justify-content: center;
}

/* ── Vertrauens-Badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #1a9c4a;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.nav.nav--scrolled {
  background: #161F21;
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav.nav--hidden {
  transform: translateY(-100%);
}
/* Nav-Container-Padding exakt wie lepp-it.de (10px statt 24px) */
.nav .container { padding: 0 10px; }

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100px;
  gap: 32px;
}

.nav__logo img {
  height: 60px;
  width: auto;
}
.nav__logo-dark { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 25px;
  list-style: none;
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--red); }
.nav__links a.active { color: var(--red); }

/* Animierter Unterstrich – nur für die Hauptlinks */
.nav__links > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links > li > a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav__links > li > a.active::after {
  transform: scaleX(1);
}

.nav__actions { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.nav__cta, .mobile-menu__cta { gap: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav__burger:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s ease;
}

.nav__burger.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1025px) {
  .nav__inner { height: 64px; }
  .nav__logo img { height: 40px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; width: 40px; height: 40px; margin-right: -8px; }
  .nav__cta { display: none; }
}

/* ── Mobile-Menü (Fade-Panel mit Drill-down-Untermenü) ── */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
  overflow: hidden;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__views {
  position: relative;
  height: 100%;
}

.mobile-menu__view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-menu__view--main { transform: translateX(0); }
.mobile-menu__view--sub { transform: translateX(100%); }
.mobile-menu.submenu-open .mobile-menu__view--main { transform: translateX(-100%); }
.mobile-menu.submenu-open .mobile-menu__view--sub { transform: translateX(0); }

.mobile-menu__back {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 8px 4px 20px;
  border: none;
  background: none;
  color: var(--gray-600);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-menu__back:hover { color: var(--red); }

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.mobile-menu__links > li > a,
.mobile-menu__dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  border-bottom: 1px solid var(--gray-200);
  color: #161F21;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
}
.mobile-menu__links > li > a.active,
.mobile-menu__dropdown-trigger.active {
  color: var(--red);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 22px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 8px 25px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--red);
  letter-spacing: normal;
  text-transform: none;
  transition: background var(--transition), color var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--red-light); color: var(--red-dark); }


/* ── Kennzahlen-Leiste ── */
.stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__location {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ── Hero ── */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #fff 60%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(22,31,33,0.70) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f6ec;
  color: #1a9c4a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── Hardware-Showcase ── */
.hardware-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hardware-showcase__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  height: 420px;
}

.hardware-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hardware-showcase__img.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .hardware-showcase { grid-template-columns: 1fr; }
  .hardware-showcase__image { height: 320px; }
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--red);
}

.card__title {
  margin-bottom: 10px;
}

.card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Branch cards (Branchen-Section) ── */
.branch-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.branch-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branch-card:hover .branch-card__img { transform: scale(1.05); }

.branch-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.branch-card__title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.branch-card__arrow {
  margin-left: auto;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.branch-card:hover .branch-card__arrow { opacity: 1; }

/* ── USP / Vorteile ── */
.usp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.usp-item__icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.usp-item__icon svg {
  width: 22px;
  height: 22px;
}

.usp-item__body h4 { margin-bottom: 6px; }
.usp-item__body p { font-size: 0.9rem; color: var(--gray-600); }

/* ── Steps / Prozess ── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}

.step:last-child { padding-bottom: 0; }

.step__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.step__connector {
  width: 2px;
  flex: 1;
  background: var(--gray-200);
  margin: 6px 0;
  min-height: 30px;
}

.step:last-child .step__connector { display: none; }

.step__content { padding-top: 10px; }
.step__content h3 { margin-bottom: 8px; }
.step__content p { color: var(--gray-600); font-size: 0.95rem; }

/* ── SLA / Pakete ── */
.pkg-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.pkg-card:hover { box-shadow: var(--shadow-lg); }

.pkg-card--featured {
  border: 2px solid var(--red);
  position: relative;
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pkg-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin: 16px 0 4px;
}

.pkg-price span { font-size: 1rem; color: var(--gray-600); font-weight: 400; }

.pkg-hourly {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.pkg-hourly s { color: var(--gray-400); }
.pkg-hourly strong { color: var(--gray-800); }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pkg-features li .check { color: #1a9c4a; font-size: 1rem; margin-top: 2px; }
.pkg-features li .cross { color: var(--gray-400); font-size: 1rem; margin-top: 2px; }

/* ── Feature-Listen (z.B. Produkt-Vorteile) ── */
.feature-list {
  list-style: none;
  column-count: 2;
  column-gap: 32px;
  margin-top: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  break-inside: avoid;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.feature-list li .check { color: #1a9c4a; font-size: 1rem; margin-top: 2px; }

/* ── Tabs Panel: 2-Spalten-Layout (Text links, Mockup rechts) ── */
.tabs.calc-card {
  padding: 32px 32px 40px;
}
.tabs__panel-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}
.tabs__panel-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tabs__panel-content .tabs__panel-title { margin-bottom: 12px; }
.tabs__panel-content .tabs__panel-text  { margin-bottom: 24px; }

/* Feature-Liste innerhalb Tabs: ruhiger Fließtext statt Kästchen */
.tabs__panel .feature-list {
  column-count: unset;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}
.tabs__panel .feature-list li {
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 0;
  padding: 14px 2px;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
  align-items: center;
}
.tabs__panel .feature-list li:last-child { border-bottom: none; }
.tabs__panel .feature-list li .check {
  color: #1a9c4a;
  font-size: 1.1rem;
  margin-top: 0;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .tabs__panel-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tabs__panel-visual { order: -1; }
}

/* ── Tabs ── */
.tabs__nav {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 auto 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 6px;
}

.tabs__nav-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 0;
  width: 0;
  background: var(--red);
  border-radius: var(--radius-sm);
  z-index: 0;
  transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tabs__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.tabs__btn:hover { color: var(--red); }
.tabs__btn.active { color: var(--white); }
.tabs__btn.active:hover { color: var(--white); }

.tabs__btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.tabs__btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}
.tabs__btn-text strong { font-size: 0.95rem; font-weight: 700; }
.tabs__btn-text small { font-size: 0.7rem; font-weight: 500; opacity: 0.75; }

.tabs__panel { display: none; }
.tabs__panel.active { display: block; animation: tabFadeIn 0.25s ease; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tabs__panel-title { margin-bottom: 12px; }
.tabs__panel-text { color: var(--gray-600); margin-bottom: 28px; max-width: 700px; }

/* ── Device-Mockup (Screenshot im Kassen-PC-Rahmen) ── */
.device-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 40px;
}

.device-mockup__frame {
  width: 100%;
  display: block;
}

.device-mockup__screen {
  position: absolute;
  top: 23%;
  left: 15%;
  width: 70%;
  height: 35%;
  overflow: hidden;
}

.device-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Device-Mockup-Slider (Wisch-Animation) ── */
.tabs__panel-visual {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.device-mockup-slider {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.device-mockup-slider__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.device-mockup-slider__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -16px rgba(22, 31, 33, 0.28), 0 10px 20px -10px rgba(144, 13, 1, 0.18);
}

.device-mockup-slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.device-mockup-slider__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}
.device-mockup-slider__arrow:hover .device-mockup-slider__chevron { border-color: var(--white); }

.device-mockup-slider__chevron {
  width: 9px;
  height: 9px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transition: border-color var(--transition);
}
.device-mockup-slider__chevron--prev { transform: rotate(-135deg); margin-left: 3px; }
.device-mockup-slider__chevron--next { transform: rotate(45deg); margin-right: 3px; }

.device-mockup-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.device-mockup-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.device-mockup-slider__slide img {
  width: 100%;
  display: block;
}

.device-mockup-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.device-mockup-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
}
.device-mockup-slider__dot.active { background: var(--red); }

/* ── Image-Slider (Software-Screenshots) ── */
.img-slider {
  position: relative;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}

.img-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.img-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1a1a1a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.img-slider__img.active {
  opacity: 1;
  pointer-events: auto;
}

.img-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--gray-800);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.img-slider__arrow:hover { background: var(--white); }
.img-slider__arrow--prev { left: 16px; }
.img-slider__arrow--next { right: 16px; }

.img-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.img-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.img-slider__dot.active { background: var(--white); }

/* ── Termin-Modal (Outlook Bookings) ── */
.termin-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.termin-modal.open { display: flex; }

.termin-modal__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 85vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.termin-modal__inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.termin-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1001;
}
.termin-modal__close:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .termin-modal { padding: 0; }
  .termin-modal__inner { height: 100vh; border-radius: 0; }
  .termin-modal__close { top: 10px; right: 10px; background: rgba(0,0,0,0.5); color: var(--white); }
}

/* ── Preisrechner ── */
.calculator__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.calculator__steps-current { color: var(--red); font-weight: 700; }

.calculator__progress {
  height: 4px;
  background: var(--gray-200);
  border-radius: 0 0 2px 2px;
  overflow: hidden;
  margin-bottom: 32px;
}
.calculator__progress-bar { height: 100%; background: var(--red); }

.calculator__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
}
.calc-card h3 { margin-bottom: 24px; }

.calc-field { margin-bottom: 28px; }
.calc-field > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
}
.calc-field select:focus { outline: none; border-color: var(--red); }

.calc-slider-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.calc-slider-row label { margin-bottom: 0; }
.calc-slider-value { color: var(--red); font-weight: 700; }

.calc-slider {
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
}

.calc-slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 6px;
}

.calc-extensions { display: flex; flex-direction: column; gap: 16px; }

.calc-extensions--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px 24px;
}
.calc-extensions--grid .calc-extension {
  align-items: flex-start;
}
.calc-extension__label {
  flex: 1;
}
.calc-extension__label .calc-extension__price {
  margin-left: 4px;
}

.calc-extension {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
  cursor: pointer;
}
.calc-extension input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.calc-extension input[type="checkbox"]:disabled { cursor: not-allowed; }
.calc-extension:has(input:disabled) { opacity: 0.5; cursor: not-allowed; }

.calc-extension__price { margin-left: auto; color: var(--gray-600); font-size: 0.875rem; }

.calc-pflicht-badge {
  flex-shrink: 0;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.calc-radio-group { display: flex; gap: 32px; flex-wrap: wrap; }

.calc-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
  cursor: pointer;
}
.calc-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}

.calculator__main { display: flex; flex-direction: column; gap: 20px; }

.calculator__nav { display: flex; justify-content: space-between; }
.calculator__nav .btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.calc-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 96px;
}
.calc-summary h3 { margin-bottom: 18px; }

.calc-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.calc-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
}
.calc-summary__total span:last-child {
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .calculator__grid { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
}

/* ── Rückruf-Modal (Formular) ── */
.rueckruf-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rueckruf-modal.open { display: flex; }

.rueckruf-modal__inner {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

.rueckruf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.rueckruf-modal__header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.rueckruf-modal__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.rueckruf-modal__close:hover { background: var(--gray-200); color: var(--gray-800); }

.rueckruf-konfiguration {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray-600);
  white-space: pre-wrap;
}

.rueckruf-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rueckruf-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rueckruf-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.rueckruf-form__field label .required { color: var(--red); }

.rueckruf-form__field input,
.rueckruf-form__field select,
.rueckruf-form__field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}
.rueckruf-form__field input:focus,
.rueckruf-form__field select:focus,
.rueckruf-form__field textarea:focus { outline: none; border-color: var(--red); }
.rueckruf-form__field input::placeholder,
.rueckruf-form__field textarea::placeholder { color: var(--gray-400); }
.rueckruf-form__field select { cursor: pointer; }
.rueckruf-form__field textarea { resize: vertical; font-size: 0.95rem; }

.rueckruf-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border: none;
}

@media (max-width: 600px) {
  .rueckruf-modal__inner { padding: 28px 24px; }
}

/* ── Demo-Modal (interaktive iPOS-Demo) ── */
.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal.open { display: flex; }

.demo-modal__inner {
  position: relative;
  width: fit-content;
  max-width: 94vw;
}

.demo-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1001;
}
.demo-modal__close:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .demo-modal { padding: 0; }
  .demo-modal__inner { width: 100%; }
  .demo-modal__close { top: 10px; right: 10px; background: rgba(0,0,0,0.5); }
}

/* --- POS-Demo-Prototyp (übernommen aus dem Elementor-Demo-Widget) --- */
.pos-prototype-container {
  position: relative;
  width: max-content;
  max-width: 100%;
  max-height: 92vh;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background-color: #ffffff;
}

.pos-prototype-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 92vh;
  user-select: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.pos-hotspot {
  position: absolute;
  cursor: pointer;
  background-color: #900d01;
  border: 0 solid transparent;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  z-index: 10;
  animation: pulse 2s infinite ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  outline: none;

  top: var(--current-top);
  left: var(--current-left);
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              left 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.1s;
}

.pos-hotspot.pos-hotspot-fly {
  animation: none;
  top: var(--target-top) !important;
  left: var(--target-left) !important;
}

.pos-hotspot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid #900d01;
  animation: radar 2s infinite linear;
}

@keyframes radar {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.pos-hotspot:hover {
  transform: scale(1.2);
  background-color: #151d20;
}

.pos-control-wrapper {
  position: absolute;
  bottom: 4%;
  left: 4%;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.pos-nav-btn {
  background-color: #900d01;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: clamp(11px, 1.2vw, 14px);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.2s;
  display: none;
  user-select: none;
  -webkit-user-select: none;
}

.pos-nav-btn:hover { background-color: #151d20; }

.pos-cta-btn {
  position: absolute;
  top: 3%;
  right: 4%;
  background-color: #ffffff;
  color: #900d01;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: clamp(11px, 1.2vw, 14px);
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: background 0.2s;
  display: none;
  user-select: none;
  -webkit-user-select: none;
}

.pos-cta-btn:hover {
  background-color: #151d20;
  color: #ffffff;
}

.pos-info-popup {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #900d01;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.4;
  text-align: center;
  width: 45%;
  max-width: 600px;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  animation: popupFadeIn 0.4s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
}

.pos-welcome-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(21, 29, 32, 0.7);
  display: none;
  justify-content: center; align-items: center;
  z-index: 100;
}

.pos-welcome-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 450px;
  width: 85%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  font-family: sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

.pos-welcome-box h2 { color: #900d01; margin-top: 0; margin-bottom: 15px; font-size: clamp(18px, 2vw, 24px); }
.pos-welcome-box p { color: #151d20; font-size: clamp(13px, 1.3vw, 15px); line-height: 1.5; margin-bottom: 20px; }

.pos-start-btn {
  background-color: #900d01;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(144, 13, 0, 0.3);
  transition: background 0.2s;
  width: auto;
  max-width: 100%;
}
.pos-start-btn:hover { background-color: #151d20; }

@keyframes popupFadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
  .pos-prototype-container {
    width: 100% !important;
    border-radius: 0;
  }

  .pos-control-wrapper { bottom: 3%; left: 3%; }
  .pos-nav-btn { padding: 6px 12px; }

  .pos-info-popup {
    width: 55% !important;
    padding: 5px 8px !important;
    top: 3% !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .pos-cta-btn {
    top: 3% !important;
    right: 3% !important;
    padding: 6px 10px !important;
    font-size: 14px !important;
  }

  .pos-welcome-box {
    padding: 15px 20px !important;
    width: 80% !important;
    max-width: 320px !important;
  }
  .pos-welcome-box h2 { font-size: 16px !important; margin-bottom: 8px !important; }
  .pos-welcome-box p { font-size: 12px !important; line-height: 1.4 !important; margin-bottom: 12px !important; }
  .pos-welcome-box .pos-start-btn { padding: 8px 16px !important; font-size: 12px !important; width: 100% !important; }
}

/* ── Testimonials ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
}

.testimonial__quote {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name { font-weight: 700; font-size: 0.95rem; }
.testimonial__role { font-size: 0.8rem; color: var(--gray-400); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-question__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--red-light);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  background: #161F21;
  color: var(--white);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.footer__logo { height: 32px; width: auto; margin-bottom: 16px; }

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__contact a i { color: var(--red); font-size: 18px; text-align: center; flex-shrink: 0; }

.footer__heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 7px; }
.footer__links a,
.footer__links li > span {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__social a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social a i {
  color: var(--red);
  font-size: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer__bottom {
  background: var(--red);
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F8FCFC;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-copyright { font-size: 13px; }
.footer__bottom-tagline { font-size: 16px; }
.footer__bottom-accent { color: #000000; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-list { column-count: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .text-center .btn-group { align-items: center; }
  .tabs__panel-visual { padding: 24px 16px; }
  .device-mockup-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .device-mockup-slider__row { gap: 4px; }
  .device-mockup-slider__arrow { width: 32px; height: 32px; }
  .device-mockup-slider__chevron { width: 7px; height: 7px; }
  .tabs__nav { flex-direction: column; width: 100%; }
  .tabs__btn { width: 100%; padding: 10px 14px; font-size: 0.8rem; }
  .price-fab__label { display: none; }
  .price-fab { padding: 0; width: 56px; height: 56px; justify-content: center; }
  .price-popup {
    right: 16px;
    bottom: 84px;
    width: calc(100vw - 32px);
    max-width: 380px;
  }
}

/* ── Preisrechner-Popup ── */
.price-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 250;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 56px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform var(--transition);
}
.price-fab:hover { background: var(--red-dark); transform: translateY(-1px); }
.price-fab svg { width: 22px; height: 22px; flex-shrink: 0; }

.price-popup {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 250;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: 80vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 20px;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.price-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.price-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.price-popup__header h3 { font-size: 1.1rem; margin: 0; }

.price-popup__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}
.price-popup__close:hover { background: var(--gray-200); color: var(--gray-800); }

.price-popup .calc-card { padding: 0; border: none; box-shadow: none; }
.price-popup .calc-card h4 { font-size: 1rem; }
.price-popup .calculator__nav { margin-top: 12px; }
.price-popup .calc-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 20px;
}
.price-popup .calc-summary__row { border-bottom: 1px solid var(--gray-200); }
.price-popup .calc-summary__total { border-top: 1px solid var(--gray-200); margin-top: 4px; padding-top: 14px; }
