/* =============================================================
   preise.css — Angebotskalkulator Light Mode (AVIO Black Edition)
   ============================================================= */

/* ─── Page Hero: Panel-über-Foto mit diagonaler Schräge ──── */

/* Section-Wrapper: min-height gibt den absolut positionierten
   Kindelelementen ihre Arbeitshöhe */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #050506;
  isolation: isolate;
  min-height: clamp(680px, 84vh, 840px);
}

/* ── Rechte Foto-Zone: absolut positioniert hinter dem Panel ── */
.page-hero__right {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  z-index: 1;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  filter: saturate(0.88) contrast(1.04);
  display: block;
}

/* ── Large desktop (≥1400px): Bild weiter rechts da mehr Platz ── */
@media (min-width: 1400px) {
  .page-hero__media-img {
    object-position: 88% center;
  }
}

/* Subtiler Overlay: nur links weich abdunkeln, Bild sonst sichtbar */
.page-hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 6, 0.30) 0%,
    rgba(5, 5, 6, 0.05) 45%,
    rgba(5, 5, 6, 0.18) 100%
  );
  pointer-events: none;
}

/* ── Linkes dunkles Panel: absolut links, über dem Foto ────── */
/* clip-path-Rechnung:
   Panel-Breite: 66vw.  Clip in Eigen-% des Panels.
   Oben rechts: 93% × 66vw ≈ 61.4vw  → ~61% des Viewports
   Unten rechts: 77% × 66vw ≈ 50.8vw → ~51% des Viewports
   Diagonale Verschiebung: ~10.6vw = genau der gewünschte Bereich
*/
.page-hero__left {
  position: absolute;
  inset: 0 auto 0 0;
  width: 66%;
  z-index: 2;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 22% 24%, rgba(255,255,255,0.048), transparent 38%),
    linear-gradient(140deg, #060607 0%, #08080a 55%, #060607 100%);
  clip-path: polygon(0 0, 93% 0, 77% 100%, 0 100%);
}

/* ── Content-Block innerhalb des Panels ───────────────────── */
.page-hero__content {
  /* margin-left richtet content mit Container aus */
  margin-left: clamp(2rem, 6.5vw, 7.5rem);
  /* max-width + width begrenzen auf sichtbaren Clip-Bereich */
  width: min(680px, 76%);
  padding-top: clamp(5.5rem, 9vw, 9rem);
  padding-bottom: clamp(3.5rem, 5vw, 6rem);
}

.page-hero__headline {
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.052em;
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.page-hero__subline {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.65;
  max-width: 46ch;
}

/* ── Button-Gruppe im Hero ────────────────────────────────── */
.page-hero .hero__actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

/* ── Tablet 769–1100px: Schräge etwas weicher ────────────── */
@media (max-width: 1100px) and (min-width: 769px) {
  .page-hero__left {
    width: 70%;
    clip-path: polygon(0 0, 91% 0, 79% 100%, 0 100%);
  }
  .page-hero__right {
    width: 62%;
  }
  .page-hero__headline {
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  }
  .page-hero__media-img {
    object-position: 76% center;
  }
}

/* ── Mobile ≤768px: vertikal stapeln, keine Schräge ─────── */
@media (max-width: 768px) {
  .page-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .page-hero__left {
    position: relative;
    inset: auto;
    width: 100%;
    clip-path: none;
    background: #060607;
    order: 1;
    align-items: flex-start;
  }
  .page-hero__content {
    margin-left: 0;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    padding-top: clamp(5rem, 14vw, 7rem);
    padding-bottom: clamp(2.5rem, 7vw, 4rem);
    width: 100%;
    max-width: none;
  }
  .page-hero__headline {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }
  .page-hero__subline {
    max-width: none;
  }
  .page-hero .hero__actions {
    gap: 0.85rem;
    margin-top: 2rem;
  }
  .page-hero__right {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(240px, 52vw, 400px);
    order: 2;
  }
  .page-hero__media {
    position: absolute;
    inset: 0;
  }
  .page-hero__media-img {
    object-position: 65% center;
  }
}

/* Desktop-Breaks im H1 auf Tablet/Mobile ausblenden */
@media (max-width: 720px) {
  .hero-br { display: none; }
}

/* ─── Kalkulator-Einleitung ──────────────────────────────── */

.calc-section__head {
  max-width: 880px;
}

.calc-section__headline {
  font-size: var(--sh-size);
  line-height: var(--sh-lh);
  letter-spacing: var(--sh-ls);
  font-weight: var(--sh-weight);
  margin-bottom: 1.1rem;
}

.calc-section__subline {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--c-gray-600);
  max-width: 62ch;
  margin-bottom: 1.25rem;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.calc-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-black);
  background: transparent;
  border: 1.5px solid #c8c8c7;
  border-radius: 100px;
  padding: 0.35rem 1.15rem;
  white-space: nowrap;
}

/* ─── UA-Reset: alle interaktiven Kalkulator-Elemente ───── */
.calc-card,
.calc-stepper__btn,
.calc-switch,
.calc-recommendation__dismiss {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* ─── Section: overflow für sticky, Hintergrundton ──────── */

.calc-section {
  overflow: visible;
  background: var(--c-off-white);
}

/* ─── Kalkulator-Layout ──────────────────────────────────── */

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 348px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: var(--space-xl);
}

.calc-builder {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
  min-width: 0;
}

/* ─── Block-Header ───────────────────────────────────────── */

.calc-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--c-line-light);
}

.calc-block__num {
  flex: 0 0 auto;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.28);
  padding-top: 0.55em;
}

.calc-block__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-black);
  margin: 0 0 0.4rem;
}

.calc-block__hint {
  font-size: 0.8rem;
  color: var(--c-gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Gezielte Hervorhebungen in Kartenbeschreibungen */
.calc-card__desc strong {
  font-weight: 700;
  font-style: normal;
  color: rgba(10, 10, 11, 0.86);
}

.calc-card.is-selected .calc-card__desc strong {
  color: rgba(255, 255, 255, 0.92);
}

.calc-extra__desc strong,
.calc-extra__note strong {
  font-weight: 700;
  font-style: normal;
  color: rgba(10, 10, 11, 0.80);
}

.calc-extra__plan-hint strong {
  font-weight: 700;
  font-style: normal;
  color: rgba(10, 10, 11, 0.68);
}

/* ─── Card-Grids ─────────────────────────────────────────── */

.calc-cards {
  display: grid;
  gap: 0.6rem;
}

.calc-cards--package {
  grid-template-columns: repeat(3, 1fr);
}

.calc-cards--addons {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── Card (nicht ausgewählt – hell) ────────────────────── */

.calc-card {
  /* UA-Reset */
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  /* Layout */
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  text-align: left;
  /* Optik: hell, clean */
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  color: var(--c-black);
  cursor: pointer;
  /* Motion */
  transition:
    background   0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow   0.28s var(--ease),
    transform    0.22s var(--ease),
    color        0.28s var(--ease);
}

.calc-card:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .calc-card:not(.is-selected):hover {
    border-color: rgba(0, 0, 0, 0.22);
    box-shadow:
      0 4px 18px -6px rgba(0, 0, 0, 0.1),
      0 1px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }
}

/* ─── Card ausgewählt – schwarz wie Landing-Page-Highlight ─ */

.calc-card.is-selected {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
  box-shadow:
    0 8px 32px -8px rgba(0, 0, 0, 0.35),
    0 2px 8px -2px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* Featured-Badge: schwebendes grünes Label über Business-Karte */
.calc-card--featured {
  overflow: visible;
}

.calc-card--featured::before {
  content: 'Von vielen Bauunternehmen gewählt';
  position: absolute;
  top: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--avio-green, #1ea336);
  color: #fff;
  box-shadow: 0 3px 14px rgba(30, 163, 54, 0.4);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.95em;
  border-radius: 999px;
  white-space: nowrap;
  font-family: inherit;
  pointer-events: none;
}

/* Platz für das schwebende Badge */
.calc-cards--package {
  padding-top: 2.5rem;
}

/* Häkchen */
.calc-card__check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-dot-green);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.45);
  transition: opacity 0.2s var(--ease), transform 0.22s var(--ease);
  pointer-events: none;
}

.calc-card.is-selected .calc-card__check {
  opacity: 1;
  transform: scale(1);
}

/* Card-Texts: nicht ausgewählt */
.calc-card__name {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--c-black);
  padding-right: 2rem;
}

.calc-card__desc {
  font-size: 0.8rem;
  line-height: 1.57;
  color: var(--c-gray-600);
  margin: 0;
  flex: 1;
}

.calc-card__price {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-line-light);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-gray-500);
  letter-spacing: -0.01em;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}

/* Card-Texts: ausgewählt → weiß */
.calc-card.is-selected .calc-card__name {
  color: var(--c-white);
}

.calc-card.is-selected .calc-card__desc {
  color: rgba(255, 255, 255, 0.58);
}

.calc-card.is-selected .calc-card__price {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.14);
}

/* ─── Extras-Bereich ─────────────────────────────────────── */

.calc-extras {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.28s var(--ease),
    background   0.28s var(--ease),
    box-shadow   0.28s var(--ease);
}

.calc-extra.is-active {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.08);
}

.calc-extra__copy {
  flex: 1;
  min-width: 0;
}

.calc-extra__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--c-black);
  margin-bottom: 0.25rem;
}

.calc-extra__desc {
  font-size: 0.8rem;
  line-height: 1.52;
  color: var(--c-gray-600);
  margin: 0;
}

.calc-extra__note {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--c-gray-500);
  margin: 0.5rem 0 0;
}

.calc-extra__plan-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.76rem;
  line-height: 1.52;
  color: rgba(10, 10, 11, 0.72);
  margin: 0.65rem 0 0;
}

.calc-extra__plan-icon {
  flex-shrink: 0;
  margin-top: 0.08em;
  opacity: 0.55;
}

.calc-extra__control {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 0 0 auto;
}

.calc-extra__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-gray-500);
  white-space: nowrap;
  min-width: 3.2rem;
  text-align: right;
  transition: color 0.22s var(--ease);
}

.calc-extra.is-active .calc-extra__price {
  color: var(--c-black);
}

/* ─── Toggle-Switch ──────────────────────────────────────── */

.calc-switch {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  width: 48px;
  height: 28px;
  position: relative;
}

.calc-switch:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
  border-radius: 999px;
}

.calc-switch__track {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  position: relative;
  transition: background-color 0.24s var(--ease);
}

.calc-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s var(--ease), background-color 0.24s var(--ease);
}

.calc-switch[aria-checked="true"] .calc-switch__track {
  background: var(--c-dot-green);
}

.calc-switch[aria-checked="true"] .calc-switch__thumb {
  transform: translateX(20px);
  background: var(--c-white);
}

/* ─── Stepper ────────────────────────────────────────────── */

.calc-stepper {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--c-line-light);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.calc-stepper__btn {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--c-black);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.18s var(--ease);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .calc-stepper__btn:not(:disabled):hover {
    background: rgba(0, 0, 0, 0.06);
  }
}

.calc-stepper__btn:active:not(:disabled) {
  background: rgba(0, 0, 0, 0.1);
}

.calc-stepper__btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calc-stepper__value {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--c-black);
  min-width: 2rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ─── Smart Recommendation ───────────────────────────────── */

.calc-recommendation {
  display: flex;
  gap: 1.1rem;
  margin-top: var(--space-md);
  padding: 1.1rem 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  animation: calcRecIn 0.36s var(--ease) both;
}

.calc-recommendation[hidden] {
  display: none;
}

.calc-recommendation__icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--c-gray-600);
  margin-top: 0.08rem;
}

.calc-recommendation__body {
  flex: 1 1 auto;
  min-width: 0;
}

.calc-recommendation__title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-black);
  margin-bottom: 0.28rem;
}

.calc-recommendation__text {
  font-size: 0.8rem;
  line-height: 1.52;
  color: var(--c-gray-600);
  margin: 0;
}

.calc-recommendation__text strong {
  font-weight: 600;
  color: var(--c-black);
}

.calc-recommendation__note {
  font-size: 0.7rem;
  color: var(--c-gray-500);
  margin: 0.32rem 0 0;
}

.calc-recommendation__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.calc-recommendation__btn {
  padding: 0.52rem 1rem;
  font-size: 0.78rem;
}

.calc-recommendation__dismiss {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  font: inherit;
  font-size: 0.7rem;
  color: var(--c-gray-500);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .calc-recommendation__dismiss:hover {
    color: var(--c-black);
  }
}

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

/* ─── Angebotsübersicht (sticky, rechts) ─────────────────── */

.calc-summary {
  position: sticky;
  top: calc(76px + 1.5rem);
  align-self: start;
}

.calc-summary__panel {
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.625rem 1.625rem;
  box-shadow:
    0 4px 28px -8px rgba(0, 0, 0, 0.09),
    0 1px 6px -2px rgba(0, 0, 0, 0.05);
}

.calc-summary__eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray-600);
  margin-bottom: 0.875rem;
}

.calc-summary__price {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.calc-summary__prefix {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-gray-500);
  letter-spacing: 0;
}

.calc-summary__amount {
  font-size: clamp(2.4rem, 3.5vw, 2.9rem);
  color: var(--c-black);
  font-variant-numeric: tabular-nums;
}

.calc-summary__currency {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-gray-500);
  letter-spacing: 0;
}

.calc-summary__net {
  font-size: 0.7rem;
  color: var(--c-gray-600);
  margin: 0.38rem 0 0;
}

.calc-summary__timeline {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin: 0.875rem 0 0;
  padding: 0.26rem 0.65rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-gray-600);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-pill);
  transition:
    background    0.24s var(--ease),
    border-color  0.24s var(--ease),
    color         0.24s var(--ease);
}

.calc-summary__timeline.is-fastlane {
  background: rgba(40, 200, 64, 0.1);
  border-color: rgba(40, 200, 64, 0.32);
  color: #1a9e30;
}

.calc-summary__match {
  font-size: 0.78rem;
  color: var(--c-gray-600);
  margin: 0.875rem 0 0;
  line-height: 1.45;
}

.calc-summary__match.is-match {
  font-weight: 600;
  color: var(--c-black);
}

.calc-summary__bonus {
  font-size: 0.7rem;
  color: var(--c-dot-green);
  margin: 0.22rem 0 0;
  font-weight: 600;
}

.calc-summary__divider {
  height: 1px;
  background: var(--c-line-light);
  margin: 1.25rem 0 0.875rem;
}

.calc-summary__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  min-height: 0.5rem;
}

/* JS-generierte Zeilen */
.calc-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.4;
  animation: calcRowIn 0.28s var(--ease) both;
}

.calc-summary__row-label {
  color: var(--c-gray-600);
  min-width: 0;
  flex: 1;
}

.calc-summary__row-label small {
  display: block;
  font-size: 0.66rem;
  color: var(--c-gray-500);
  margin-top: 0.12rem;
  line-height: 1.4;
}

.calc-summary__row-value {
  font-weight: 600;
  color: var(--c-black);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-summary__row--surcharge .calc-summary__row-value {
  color: var(--c-dot-green);
}

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

.calc-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.875rem 0;
  border-top: 1px solid var(--c-line-light);
  margin-bottom: 0.5rem;
}

.calc-summary__total-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-gray-700);
}

.calc-summary__total-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-black);
  font-variant-numeric: tabular-nums;
}

/* ─── Launch / Datum-Zeile ──────────────────────────────── */

.calc-summary__launch {
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-summary__launch-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.calc-summary__launch-when {
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.calc-summary__cal-icon {
  flex-shrink: 0;
  opacity: 0.4;
}

/* Datums-Pill (wird von calculator.js befüllt via .calc-summary__launch-date) */
.calc-summary__launch-date,
.calc-summary .leistungen-cta__deadline {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--c-black);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.8rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

/* ─── Grüner Dot im CTA-Button ───────────────────────────── */

.calc-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-dot-green);
  flex-shrink: 0;
  transition: box-shadow var(--t-base) var(--ease);
}

/* Power-Symbol-Größe im Button */
.calc-cta__icon {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

/* ─── Hochwertiger CTA-Button (identisch zur Landing-Page) ── */

.calc-summary__cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  margin-top: 0;
  box-shadow: 0 10px 24px -16px rgba(10, 10, 11, 0.45);
  transition:
    transform    0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow   0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background   var(--t-fast) var(--ease);
}

/* Alle direkten Kinder über dem Shimmer-Layer */
.calc-summary__cta > * {
  position: relative;
  z-index: 1;
}

/* Shimmer-Sweep (wie bei leistungen-cta .btn--primary) */
.calc-summary__cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent      20%,
    rgba(255,255,255,0.08) 40%,
    rgba(210,210,220,0.36) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent      80%
  );
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* Pfeil-Transition */
.calc-summary__cta .btn__arrow {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  /* Höhere Spezifität als .section--light .btn--primary:hover aus components.css */
  .calc-summary__panel .calc-summary__cta:hover {
    background: var(--c-black-elevated);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(10, 10, 11, 0.55);
  }

  .calc-summary__panel .calc-summary__cta:hover::after {
    transform: translateX(130%);
  }

  .calc-summary__panel .calc-summary__cta:hover .btn__arrow {
    transform: translateX(5px);
  }

  .calc-summary__panel .calc-summary__cta:hover .calc-cta__dot {
    box-shadow:
      0 0 0 5px rgba(40, 200, 64, 0.2),
      0 0 12px 2px rgba(40, 200, 64, 0.5);
  }

  .calc-summary__panel .calc-summary__cta:hover .calc-cta__icon {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .calc-summary__cta,
  .calc-summary__cta::after,
  .calc-summary__cta .btn__arrow {
    transition: none;
  }
  .calc-summary__cta::after {
    display: none;
  }
}

/* Grüner CTA-Button im Kalkulator: Shimmer deaktivieren, Hover anpassen */
.calc-summary__cta.btn--green::after { display: none; }

@media (hover: hover) and (pointer: fine) {
  .calc-summary__panel .calc-summary__cta.btn--green:hover {
    background: var(--avio-green-hover);
    box-shadow:
      0 14px 38px rgba(0, 0, 0, 0.18),
      0 0 26px var(--avio-green-shadow);
  }
  .calc-summary__panel .calc-summary__cta.btn--green:hover .calc-cta__dot {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12), 0 0 8px 1px rgba(0, 0, 0, 0.15);
  }
  .calc-summary__panel .calc-summary__cta.btn--green:hover .calc-cta__icon {
    filter: none;
  }
}

.calc-summary__cta.is-disabled {
  opacity: 0.42;
  box-shadow: none;
  filter: grayscale(0.15);
}

@media (hover: hover) and (pointer: fine) {
  .calc-summary__panel .calc-summary__cta.is-disabled:hover {
    transform: none;
    box-shadow: none;
  }
  .calc-summary__cta.is-disabled::after {
    transform: translateX(-130%) !important;
  }
}

.calc-summary__cta-hint {
  font-size: 0.78rem;
  color: var(--c-gray-500);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.calc-summary__cta.is-disabled:hover ~ .calc-summary__cta-hint {
  opacity: 1;
}

.calc-summary__trust {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line-light);
}

.calc-summary__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.74);
  line-height: 1.35;
}

.calc-summary__trust-item svg {
  flex: 0 0 auto;
  color: var(--c-dot-green);
}

.calc-summary__briefing-note {
  font-size: 0.72rem;
  line-height: 1.48;
  color: rgba(10, 10, 11, 0.42);
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-line-light);
}

/* ─── Responsive: 1080px → 1-spaltig, kein sticky ──────── */

@media (max-width: 1080px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-summary {
    position: static;
  }

  .calc-summary__panel {
    padding: 1.5rem;
  }
}

/* ─── Responsive: 760px → Karten 1-spaltig ──────────────── */

@media (max-width: 760px) {
  .calc-cards--package,
  .calc-cards--addons {
    grid-template-columns: 1fr;
  }
}

/* ─── Responsive: 560px → Extras gestapelt ──────────────── */

@media (max-width: 560px) {
  .calc-extra {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .calc-extra__control {
    width: 100%;
    justify-content: space-between;
  }

  .calc-recommendation {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ─── Reduced Motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .calc-card,
  .calc-extra,
  .calc-switch__track,
  .calc-switch__thumb {
    transition: none;
  }
  .calc-recommendation,
  .calc-summary__row {
    animation: none;
  }
}

/* ─── Ablauf: Full-Width Split-Section ───────────────────── */

.prozess-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 720px;
  box-sizing: border-box;
}

/* ─── Linke schwarze Seite ───────────────────────────────── */

.prozess-split__left {
  flex: 0 0 38%;
  width: 38%;
  background: #0a0a0b;
  padding: clamp(2.5rem, 5.5vw, 5rem) clamp(1.75rem, 3vw, 3rem) clamp(2.5rem, 5.5vw, 5rem) clamp(2.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.prozess-split__left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background:
    radial-gradient(ellipse 100% 70% at 0% 120%, rgba(40, 200, 64, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 110%, rgba(255,255,255,0.03) 0%, transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.prozess-split__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.prozess-split__brand-name {
  color: rgba(255, 255, 255, 0.55);
}

.prozess-split__brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-dot-green);
  flex-shrink: 0;
  margin-left: 0.1rem;
}

.prozess-split__headline {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  letter-spacing: var(--sh-ls);
  line-height: var(--sh-lh);
  color: var(--c-white);
  margin: 0;
  position: relative;
  z-index: 1;
}

.prozess-split__accent {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--c-dot-green);
  margin: 1.4rem 0 1.6rem;
  position: relative;
  z-index: 1;
}

.prozess-split__desc {
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2.75rem;
  max-width: 30ch;
  position: relative;
  z-index: 1;
}

.prozess-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.prozess-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.prozess-trust__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dot-green);
}

.prozess-trust__title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.28rem;
  line-height: 1.2;
}

.prozess-trust__text {
  font-size: 0.775rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

/* ─── Rechte helle Seite ─────────────────────────────────── */

.prozess-split__right {
  flex: 1 1 0;
  min-width: 0;
  background: #f4f4f3;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.prozess-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

/* ─── Prozesskarte ───────────────────────────────────────── */

.prozess-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 20px -6px rgba(0, 0, 0, 0.10),
    0 1px 4px -2px rgba(0, 0, 0, 0.05);
  min-height: 112px;
  box-sizing: border-box;
  /* Scroll-Reveal: initial hidden state */
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity   0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
  will-change: transform, opacity;
}

.prozess-card.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered offsets per card (nth-child — kein variable multiplication nötig) */
.prozess-card:nth-child(1) { margin-left: 0;   max-width: 100%; }
.prozess-card:nth-child(2) { margin-left: 48px;  max-width: calc(100% - 48px); }
.prozess-card:nth-child(3) { margin-left: 96px;  max-width: calc(100% - 96px); }
.prozess-card:nth-child(4) { margin-left: 144px; max-width: calc(100% - 144px); }
.prozess-card:nth-child(5) { margin-left: 192px; max-width: calc(100% - 192px); }
.prozess-card:nth-child(6) { margin-left: 240px; max-width: calc(100% - 240px); }

/* Hover: verstärkte Tiefe + Schatten (JS setzt transform direkt) */
@media (hover: hover) and (pointer: fine) {
  .prozess-card.is-visible:hover {
    box-shadow:
      0 22px 55px -10px rgba(0, 0, 0, 0.16),
      0 6px 18px -6px rgba(0, 0, 0, 0.09);
  }
}

/* ─── Schräger Nummernblock ──────────────────────────────── */

.prozess-card__num-wrap {
  flex-shrink: 0;
  width: 108px;
  background: var(--c-black);
  clip-path: polygon(0 0, 83% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1.25rem;
}

.prozess-card__num {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
}

/* ─── Icon-Kreis ─────────────────────────────────────────── */

.prozess-card__icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  align-self: center;
  margin: 0 1.25rem;
}

/* ─── Kartentext ─────────────────────────────────────────── */

.prozess-card__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem 1.25rem 0;
}

.prozess-card__title {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.016em;
  line-height: 1.22;
  color: var(--c-black);
  margin: 0 0 0.35rem;
}

.prozess-card__text {
  font-size: 0.8rem;
  line-height: 1.58;
  color: var(--c-gray-600);
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */

/* 1280px: leicht reduzierte Offsets */
@media (max-width: 1280px) {
  .prozess-card:nth-child(2) { margin-left: 36px;  max-width: calc(100% - 36px); }
  .prozess-card:nth-child(3) { margin-left: 72px;  max-width: calc(100% - 72px); }
  .prozess-card:nth-child(4) { margin-left: 108px; max-width: calc(100% - 108px); }
  .prozess-card:nth-child(5) { margin-left: 144px; max-width: calc(100% - 144px); }
  .prozess-card:nth-child(6) { margin-left: 180px; max-width: calc(100% - 180px); }
}

/* 1080px: weiter reduziert */
@media (max-width: 1080px) {
  .prozess-split__left  { flex: 0 0 40%; width: 40%; }
  .prozess-card__num-wrap { width: 92px; }
  .prozess-card:nth-child(2) { margin-left: 22px;  max-width: calc(100% - 22px); }
  .prozess-card:nth-child(3) { margin-left: 44px;  max-width: calc(100% - 44px); }
  .prozess-card:nth-child(4) { margin-left: 66px;  max-width: calc(100% - 66px); }
  .prozess-card:nth-child(5) { margin-left: 88px;  max-width: calc(100% - 88px); }
  .prozess-card:nth-child(6) { margin-left: 110px; max-width: calc(100% - 110px); }
}

/* 900px: untereinander stapeln */
@media (max-width: 900px) {
  .prozess-split {
    flex-direction: column;
    min-height: auto;
  }

  .prozess-split__left {
    flex: none;
    width: 100%;
    padding: 3rem clamp(1.5rem, 5vw, 2.5rem);
  }

  .prozess-split__right {
    flex: none;
    width: 100%;
    padding: 3rem clamp(1.5rem, 5vw, 2.5rem);
  }

  .prozess-split__desc { max-width: none; }

  .prozess-card:nth-child(1),
  .prozess-card:nth-child(2),
  .prozess-card:nth-child(3),
  .prozess-card:nth-child(4),
  .prozess-card:nth-child(5),
  .prozess-card:nth-child(6) {
    margin-left: 0;
    max-width: 100%;
  }
}

/* 560px: kompakter */
@media (max-width: 560px) {
  .prozess-card { min-height: 90px; }
  .prozess-card__num-wrap { width: 78px; }
  .prozess-card__num { font-size: 1.35rem; }
  .prozess-card__icon-wrap { display: none; }
  .prozess-card__copy { padding: 1rem 1rem 1rem 0; }
}

/* Reduced motion: Karten sofort sichtbar, kein Hereinfahren */
@media (prefers-reduced-motion: reduce) {
  .prozess-card {
    opacity: 1;
    transform: none;
  }
}

/* ─── Trust-Section (Klare Preise) ──────────────────────── */

.trust-section {
  background: var(--c-white);
}

.trust__head {
  max-width: 580px;
  margin-bottom: var(--space-xl);
}

.trust__headline {
  font-size: var(--sh-size);
  line-height: var(--sh-lh);
  letter-spacing: var(--sh-ls);
  font-weight: var(--sh-weight);
  margin-bottom: 0.7rem;
}

.trust__subline {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.62;
  color: var(--c-gray-600);
}

.trust__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
}

.trust__tile {
  padding-top: 1.4rem;
  border-top: 2px solid var(--c-black);
}

.trust__tile-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--c-black);
  margin: 0 0 0.55rem;
}

.trust__tile-text {
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--c-gray-600);
  margin: 0;
}

@media (max-width: 900px) {
  .trust__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust__tiles {
    grid-template-columns: 1fr;
  }
}

/* ─── FAQ-Section ────────────────────────────────────────── */

.faq__head {
  max-width: 860px;
  margin-bottom: var(--space-xl);
}

.faq__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 800;
}

.faq__list {
  max-width: 860px;
}

.faq__item {
  border-top: 1px solid var(--c-line-light);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--c-line-light);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--c-black);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0b' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s var(--ease);
  opacity: 0.55;
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
  opacity: 1;
}

.faq__a {
  padding-bottom: 1.4rem;
}

.faq__a p {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--c-gray-600);
  margin: 0;
  max-width: 64ch;
}

/* CTA am Ende: "Sie wissen noch nicht, welches Paket passt?" */
.cta-final__head h2 {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  line-height: var(--sh-lh);
  letter-spacing: var(--sh-ls);
  color: var(--c-black);
  margin-bottom: var(--space-sm);
  max-width: 680px;
}

/* ─── Mobile Preisleiste (Kalkulator) ──────────────────── */

.calc-mobile-bar {
  display: none;
}

@media (max-width: 1080px) {
  .calc-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1rem, 4vw, 1.5rem);
    padding-bottom: calc(clamp(0.75rem, 2vw, 0.875rem) + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid var(--c-line-light);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(calc(100% + 1px));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .calc-mobile-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .calc-mobile-bar__left {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex-shrink: 0;
  }

  .calc-mobile-bar__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gray-500);
  }

  .calc-mobile-bar__price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
  }

  .calc-mobile-bar__amount {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-black);
    font-variant-numeric: tabular-nums;
  }

  .calc-mobile-bar__currency {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-gray-500);
  }

  .calc-mobile-bar__cta {
    flex-shrink: 0;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  .calc-mobile-bar__cta.is-disabled {
    opacity: 0.42;
    pointer-events: none;
    box-shadow: none;
  }

}

/* Abstand für Footer, wenn mobile Bar sichtbar — via JS-Klasse auf body */
@media (max-width: 1080px) {
  body.has-mobile-bar .footer {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calc-mobile-bar {
    transition: none;
  }
}
