:root {
  --blue: #3b46c1;
  --blue-dark: #2e3192;
  --blue-soft: #eef0fb;
  --blue-muted: #6b72c9;
  --bg: #f0f2f9;
  --white: #ffffff;
  --text: #2e3192;
  --text-mid: #5059c9;
  --text-soft: #7a82b8;
  --grey: #8a8fa8;
  --success: #22c55e;
  --error: #dc2626;
  --border: #3b46c1;
  --radius-card: 20px;
  --radius-input: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 12px 40px rgba(59, 70, 193, 0.08);
  --font: Mueller, Arial, sans-serif;
  --font-display: Mueller, Arial, sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }
button, input, select, textarea { font-family: var(--font); }
button { cursor: pointer; }

#fs-app { min-height: 100vh; }

.panel { display: none; }
.panel.active { display: block; }

.page-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.page-heading {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 28px;
}

.page-heading em { font-style: italic; }

/* Calculator   */
.hero-section {
  padding: 48px 20px 0;
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.tariff-tabs {
  display: flex;
  background: var(--blue);
  overflow: hidden;
}

.ttab {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: 500;
  padding: 20px 12px;
  transition: background var(--transition), color var(--transition);
}
 

.ttab-active {
  background: rgb(251, 251, 254) !important;
  color: var(--blue);
  font-weight: 700;
}

.calc-card-body { padding: 28px 28px 36px; }

.customer-switch-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.switch-label {
  font-size: 18px;
  color: var(--blue);
  font-weight: 500;
  transition: font-weight var(--transition), opacity  var(--transition);
}

#panel-3 .switch-label {
  font-size: 16px;
}

.switch-label.active { font-weight: 700; }

.switch-wrap {
  position: relative;
  width: 74px;
  height: 34px;
  flex-shrink: 0;
}

.switch-wrap input { display: none; }

.switch-slider {
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: var(--radius-pill);
}

.switch-slider::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  top: 5px;
  left: 6px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.switch-wrap input:checked + .switch-slider::before {
  transform: translateX(38px);
}

.calc-input-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.calc-box {
  border: 2.5px solid var(--border);
  border-radius: var(--radius-input);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: transparent; /* var(--white); */
}

.zip-box {
  flex: 1 1 200px;
  max-width: 240px;
  position: relative;
}

.zip-box input {
  border: none;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  outline: none;
  text-align: center;
  background: transparent;
}

.zip-box input::placeholder { color: var(--blue-muted); font-weight: 500; }

.zip-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  pointer-events: none;
  font-size: 12px;
}

.person-box {
  flex: 1 1 220px;
  max-width: 260px;
  gap: 14px;
}

.circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background var(--transition);
}

.circle-btn:hover:not(:disabled) { background: var(--blue-soft); }
.circle-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.person-center { text-align: center; min-width: 80px; }

.small-label {
  display: block;
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 2px;
}

#personsNum {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.consumption-box {
  flex: 1 1 220px;
  max-width: 280px;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.consumption-box label,
.consumption-box .cons-label {
  color: var(--blue);
  font-size: 13px;
/*  font-weight: 500; */
}

.consumption-box input {
  border: none;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  outline: none;
  width: 100%;
  background: transparent;
  -moz-appearance: textfield;
}

.consumption-box input::-webkit-outer-spin-button,
.consumption-box input::-webkit-inner-spin-button { -webkit-appearance: none; }

#consumDisplay {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

.business-levels {
  display: none;
  justify-content: center;
  margin-bottom: 8px;
}

.business-levels.visible { display: flex; }

.level-segment {
  display: flex;
  border: 2.5px solid var(--blue);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.level-btn {
  border: none;
  background: var(--white);
  color: var(--blue);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.level-btn.active {
  background: var(--blue);
  color: var(--white);
}

.large-commercial-link {
  text-align: right;
  font-size: 13px;
  color: var(--blue);
  margin: 8px 0 4px;
  padding: 0 4px;
}

.large-commercial-link a {
  text-decoration: underline;
  font-weight: 600;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-primary,
.btn-zum-tarif {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-style: italic;
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
}

.btn-zum-tarif {
  min-width: 260px;
  height: 58px;
  font-size: 22px;
  padding: 0 36px;
}

.btn-primary, .btn-outline {
  min-width: 190px;
  height: 46px;
  font-size: 20px;
  padding: 0 26px;
}

.btn-outline {
  font-size: 16px;
  border-width: 3px;
}

.btn-primary.wide,
.btn-zum-tarif.wide { width: 100%; max-width: 360px; }

.btn-primary:hover:not(:disabled),
.btn-zum-tarif:hover:not(:disabled) {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-primary:disabled,
.btn-zum-tarif:disabled { opacity: 0.55; cursor: not-allowed; }

.hidden-btn { display: none !important; }

/* Tab info */
.tab-info-section {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 0 20px 48px;
}

.tab-info {
  display: none;
  gap: 20px;
  align-items: stretch;
}

.tab-info-active {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  animation: fadeUp 0.35s ease;
}

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

.ti-icon-card {
  background: var(--blue-soft);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 200px;
}

.ti-icon { width: 90px; height: 90px; color: var(--blue); }
.ti-icon-img {
  width: 205px;
  height: 205px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.ti-product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}

.ti-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.ti-product-card h3 {
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 4px;
}

.ti-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}

.ti-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.ti-product-card > p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ti-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ti-features li {
  font-size: 14px;
  color: var(--grey);
  padding-left: 22px;
  position: relative;
}

.ti-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.fs-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 80px 40px;
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin: 0 auto;
}

.fs-card.wide { max-width: 720px; }

.card-intro {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 22px;
  line-height: 1.6;
}

.card-intro.card-into-space {
	margin-top: 42px;
}

.card-intro strong { color: var(--blue); }

/* Pill inputs */
.field-pill {
  margin-bottom: 14px;
}

.field-pill input,
.field-pill textarea,
.field-pill select {
  width: 100%;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-input);
  padding: 14px 20px;
  font-size: 15px;
  color: var(--blue);
  background: var(--white);
  outline: none;
  text-align: center;
  transition: border-color var(--transition);
}

#panel-3 .field-pill input,
#panel-3 .field-pill textarea,
#panel-3 .field-pill select {
  text-align: left;
}

.field-pill select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field-pill textarea {
  min-height: 108px;
  resize: vertical;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 0;
}

.checkbox-inline input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.review-extra-fields {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #dfe3ff;
}


.field-pill input:focus,
.field-pill textarea:focus,
.field-pill select:focus { border-color: var(--blue-dark); box-shadow: 2px 0 6px 0 rgba(62, 72, 192, 0.33); }

.field-pill input::placeholder,
.field-pill textarea::placeholder { color: var(--blue-muted); }

.field-pill.dual-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-input);
  position: relative;
}

.field-pill.dual-line .fl-top {
  font-size: 13px;
  color: var(--blue);
  text-align: center;
}

.field-pill.dual-line input {
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
}

.field-pill .info-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  
  display: none;
}

.field-row-2 {
  display: flex;
  gap: 12px;
}

.field-row-2 .field-pill { flex: 1; margin-bottom: 14px; }
.field-row-2 .field-pill.narrow { flex: 0 0 28%; }

/* Benefits  */
.power-icon {
    display: inline-block;
    width: 16px;        
    height: 16px;    
    vertical-align: middle;
    margin-right: 9px;   
    background-image: url('icons/flash.png?v=2');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.power-icon-large {
	width: 22px;        
    height: 22px;    
	position: absolute;
}
.power-icon-left {
	left: -40px;
	top: calc(50% - 11px);
}
.power-icon-right {
	right: -40px;
	top: calc(50% - 11px);
}
.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.benefit-icon--svg {
  width: 48px;
  height: 48px;
  color: var(--blue);
}

/* Toggle section */
.toggle-section {
  text-align: center;
  margin: 20px 0;
}

.toggle-section .toggle-title,
.toggle-title-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.toggle-title-btn {
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}

.toggle-title-btn:hover { color: var(--blue-dark); }

.bill-fields { margin-bottom: 8px; }

.checkout-info-continuous { margin-top: 8px; }

.toggle-hint {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 128%;
  text-align: left;
  margin: 14px 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Gender radios */
.gender-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.gender-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--blue);
  cursor: pointer;
}

.gender-opt input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

/* Lavender section bars */
.lavender-bar {
  background: var(--blue-soft);
  border-radius: var(--radius-input);
  padding: 16px 18px;
  margin-bottom: 16px;
}

.lavender-bar .bar-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0px;
}

.lavender-bar .toggle-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.radio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.radio-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue);
  cursor: pointer;
}

.radio-inline input { accent-color: var(--blue); width: 16px; height: 16px; }

.info-box {
  background: var(--blue-soft);
  border-radius: var(--radius-input);
  padding: 12px 0px 0;
  margin-bottom: 0px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 128%;
}

.info-box ul {
  padding-left: 18px;
  margin: 0;
}

.info-box li { margin-bottom: 8px; }
.info-box a { text-decoration: underline; }

.helper-link {
  display: block;
  font-size: 12px;
  color: var(--blue);
  text-decoration: underline;
  margin: 6px 0 14px;
  text-align: center;
}

/* Results */
.results-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px 40px;
  box-shadow: var(--shadow-card);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.results-card .rc-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.results-card .rc-name {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 20px;
}

.results-card .rc-fee {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.results-card .rc-fee span { font-size: 14px; font-weight: 500; }

.results-card .rc-line {
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 4px;
}

.results-card .rc-details-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  margin: 18px 0 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.results-card .rc-footer {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin: 12px 0 24px;
  line-height: 1.6;
}

.plans { display: flex; flex-direction: column; gap: 24px; max-width: 560px; margin: 0 auto; }

.panel-2-header {
  max-width: 560px;
  margin: 0 auto 20px;
  text-align: center;
}

.panel-2-header .btn-back {
  display: block;
  margin: 0 auto 10px;
}

.panel-2-header .calc-meta-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
}

/* Plan cards  */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.plan-card-flex { background: linear-gradient(180deg, #fafbff, #f5f6ff); }

.pc-label { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.pc-name { font-size: 32px; font-weight: 700; font-style: italic; color: var(--blue); margin-bottom: 14px; line-height: 1.3; margin-left: 30px; margin-right: 30px; position: relative; display: inline-block;}
.pc-fee { font-size: 42px; font-weight: 700; color: var(--blue); line-height: 1.1; }
.pc-fee-unit { font-size: 14px; color: var(--blue); display: block; margin-bottom: 20px; font-weight: 500; }
.pc-prices { font-size: 14px; color: var(--blue); margin-bottom: 20px; max-width: 200px; margin-left: auto; margin-right: auto; }
.pc-price-row { display: flex; justify-content: space-between; margin: 0 auto 0px; gap: 12px; }
.pc-contract-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin: 8px 0 20px;
  line-height: 1.5;
}
.pc-footer {
	display: grid;
    align-items: center;
    justify-content: space-around;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.pc-details-toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pc-details-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 0;
}
.pc-details-body {
  text-align: left;
  font-size: 13px;
  color: var(--grey);
  padding: 12px 0 0;
  width: 100%;
}
.pc-buchen-btn {
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 240px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  margin: 0 0 0 auto;
}

/* Detail view */
#detail-view .page-wrap { max-width: 720px; }

.dv-header-card {
  background: var(--blue);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}

.dv-title { font-size: 30px; font-weight: 700; font-style: italic; margin: 0px 0 12px; line-height: 1.1; padding-top: 8px;}
.dv-price { font-size: 40px; font-weight: 700; line-height: 1; }
.dv-section {
  background: var(--white);
  border-radius: var(--radius-input);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}

.dv-sec-title { font-size: 12px; font-weight: 700; color: var(--blue-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.dv-body-text { font-size: 14px; color: var(--text-mid); line-height: 128%; }
.dv-body-text p { margin-bottom: 18px; }
.dv-body-text p:last-child { margin-bottom: 0px; }
.dv-cost-table, .dv-info-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.dv-info-table { margin-bottom: 20px; }
.dv-cost-table td, .dv-info-table td { padding: 6px 0; border-bottom: 1px solid var(--blue-soft); }
.dv-info-table th { text-align: left; }
.dv-cost-note { font-size: 11px; opacity: .6; margin-top: 8px; line-height: 1.5; }
.dv-label { color: var(--text-mid); }
.dv-value { text-align: right; font-weight: 700; }
.dv-choose-btn, .dv-back-btn { width: 100%; border-radius: var(--radius-pill); padding: 14px; margin-bottom: 8px; font-weight: 700; font-size: 13px; }
.dv-choose-btn { background: var(--blue); color: var(--white); border: none; /* font-style: italic;  */ font-size: 16px; }
.dv-back-btn { background: transparent; border: 2px solid var(--blue-soft); color: var(--blue-muted); }
.dv-legal-links a{ display: block; text-decoration: none; }

#backDetail.btn-back { margin-bottom: 16px; }

/* Checkout */
.step-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5c9e8;
}

.step-dot.active { background: var(--blue); }

.checkout-step { display: none; }
.checkout-step.active { display: block; }

.plan-bar {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-input);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pb-name { font-weight: 700; font-style: italic; }
.pb-meta { font-size: 12px; opacity: 0.8; }
.pb-fee { font-size: 22px; font-weight: 700; }

.form-row { display: flex; flex-wrap: wrap; gap: 12px; }
.fgroup { flex: 1 1 180px; display: flex; flex-direction: column; gap: 5px; }
.fgroup.full { flex: 1 1 100%; }
.fgroup label { font-size: 12px; font-weight: 600; color: var(--blue); }
.fgroup input {
  border: 2px solid var(--border);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--blue);
  outline: none;
  text-align: center;
}

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid rgba(59,70,193,0.25);
  border-radius: var(--radius-input);
  cursor: pointer;
  background: var(--white);
}

.radio-opt.radio-sepa {
	display: flex; flex-direction: column; gap: 10px;   align-items: stretch;
}

.radio-sepa-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}


.radio-opt.checked { border-color: var(--blue); background: var(--blue-soft); }
.rlabel { font-weight: 700; font-size: 14px; }
.rdesc { font-size: 12px; color: var(--text-mid); }

/* Thank you */
.thankyou-page {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background: var(--bg);
}

.thankyou-page--commercial,
.thankyou-page--order {
  background: #eef0ff;
}

.thankyou-card {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(52, 55, 200, 0.1);
}

.thankyou-card--commercial h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  font-style: normal;
  color: #3437c8;
  margin-bottom: 24px;
}

.thankyou-card--commercial .ty-sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: #3437c8;
  line-height: 1.55;
  margin: 0 0 32px;
}

.thankyou-card--commercial .ty-sub em {
  font-style: italic;
}

.thankyou-card--commercial .btn-outline {
  margin-top: 0;
}

.thankyou-frame {
  background: var(--white);
  border: 2px solid #d8dcf0;
  border-radius: 8px;
  padding: 52px 40px 44px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(52, 55, 200, 0.08);
}

.thankyou-frame .ty-spark-img {
  width: 88px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  object-fit: contain;
}

.thankyou-frame h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  font-style: italic;
  color: #3437c8;
  margin-bottom: 20px;
}

.thankyou-frame .ty-lines {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: #3437c8;
  line-height: 1.45;
  margin-bottom: 32px;
}

.thankyou-frame .ty-lines span {
  display: block;
}

.thankyou-frame .ty-lines .ty-italic {
  font-style: italic;
}

.thankyou-frame .btn-outline {
  margin-top: 0;
  border-color: #3437c8;
  color: #3437c8;
}

.pb-per { font-size: 14px; font-weight: 500; opacity: 0.85; }

/* Utilities */
.btn-back {
  background: none;
  border: none;
  color: var(--blue-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-right: 14px;
  padding: 0;
}

.btn-back:hover { color: var(--blue); }

.btn-outline {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-top: 16px;
}

.alert { display: none; padding: 12px 16px; border-radius: 12px; font-size: 13px; margin-top: 12px; }
.alert.err { background: #fff5f5; border: 1px solid #fecaca; color: #991b1b; }

.spinner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  margin: 12px 0;
}

.ring {
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--blue-soft);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.center-actions { display: flex; justify-content: center; margin-top: 44px; }

.legal-notice { font-size: 11px; color: var(--text-soft); text-align: center; margin-top: 12px; }
.legal-notice a { text-decoration: underline; }

.order-review-card {
  max-width: 860px;
}

.review-section {
  border: 1px solid #dfe3ff;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 16px;
  background: #fbfcff;
}

.review-section h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 18px;
}

.review-section dl {
  margin: 0;
}

.review-row {
  display: grid;
  grid-template-columns: minmax(150px, 38%) 1fr;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #edf0ff;
}

.review-row:first-child {
  border-top: 0;
}

.review-row dt {
  font-weight: 700;
  color: var(--blue);
}

.review-row dd {
  margin: 0;
  color: var(--text-mid);
  overflow-wrap: anywhere;
}

.review-empty {
  color: var(--text-soft);
}

.review-legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
}

.review-legal a {
  text-decoration: underline;
}

input.err, .field-pill input.err { /* outline: 2px solid var(--error); */ border-color: var(--error); }

.calc-meta-text { font-size: 12px; color: var(--text-mid); text-align: center; margin-bottom: 16px; }

.panel-topbar {
  max-width: 920px;
  margin: 0 auto 8px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .pc-footer { flex-direction: column; align-items: stretch; }
  .pc-buchen-btn { max-width: 100%; margin: 0; }
  .pc-details-toggle { justify-content: center; }
}

@media (max-width: 768px) {
  .tab-info-active { grid-template-columns: 1fr; }
  .ti-icon-card { min-height: 140px; }
  .calc-input-row { flex-direction: column; align-items: stretch; }
  .zip-box, .person-box, .consumption-box { max-width: 100%; flex: 1 1 100%; }
  .fs-card { padding: 24px 20px 32px; }
  .field-row-2 { flex-direction: column; gap: 0; }
  .field-row-2 .field-pill.narrow { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .ttab { font-size: 13px; padding: 14px 8px; }
  .btn-zum-tarif { min-width: 100%; font-size: 18px; }
  .page-heading { font-size: 24px; }
}


#fs-app:not(.fs-hero-bg) { background: #eef0ff; }
.hero-section {
  min-height: 0;
  padding: 28px 20px 14px;
  background: radial-gradient(circle at 18% 16%, rgba(255,255,255,.72), transparent 30%), #eef0ff;
  overflow: visible;
}
.blob { display: none; }
.hero-title-wrap { margin-bottom: 28px; }
.hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.05;
  color: #3437c8 !important;
  font-style: italic;
}
.calc-card {
  max-width: 786px;
  margin: 0 auto;
  border: 1px solid rgba(52,55,200,.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  box-shadow: none;
  padding: 0 0 18px;
}
.tariff-tabs { margin: 0; background: #3437c8; border-radius: 7px 7px 0 0; gap: 0; }
.ttab { color: #fff; font-size: 16px; font-weight: 500; padding: 14px 12px; border-radius: 0; }
.ttab-active { color: #3437c8 !important; rgb(251, 251, 254) !important; box-shadow: 0 0 10px rgba(0,0,0,.32); border-radius: 7px 7px 0 0; }
.customer-switch-row { padding: 24px 20px 22px; gap: 13px; }
.switch-label { color: #3437c8; font-size: 18px; opacity: 0.6; font-weight: 600; }
.switch-label.active { font-weight: 800; opacity: 1; }
.switch-wrap { width: 72px; height: 28px; }
.switch-slider { background: #3437c8; }
.switch-slider::before { width: 20px; height: 20px; left: 5px; top: 4px; }
.switch-wrap input:checked + .switch-slider::before { transform: translateX(42px); }
.calc-input-row { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 16px; padding: 0 16px 20px; align-items: center; }
.calc-box { border: 3px solid #3437c8; border-radius: 13px; min-height: 48px; padding: 6px 12px; background: transparent; /* #fff; */ color: #3437c8; }
.zip-box { width: auto; position: relative; justify-content: flex-start; }
.zip-box::after { content: ''; width: 16px; height: 16px; border-right: 5px solid #3437c8; border-bottom: 5px solid #3437c8; transform: rotate(45deg); position: absolute; right: 19px; top: 17px; }
.zip-box input { color: #3437c8; font-size: 14px; padding-right: 34px; background: transparent; }
.person-box { min-width: 0; border: 0; gap: 15px; }
.circle-btn { width: 31px; height: 31px; border: 3px solid #3437c8; color: #3437c8; display: grid; place-items: center; line-height: 1; background: transparent; /* #fff; */ padding-bottom: 3px; }
.small-label { color: #3437c8; font-size: 13px; }
#personsNum { color: #3437c8; font-size: 13px; }
.consumption-box { min-width: 0; min-height: 48px; line-height: 1.1; }
.consumption-box label { color: #3437c8; font-size: 14px; }
.consumption-box input { color: #3437c8; font-size: 14px; font-weight: 400; height: auto; }
.consumption-box::after { content: 'kWh/Jahr'; color: #3437c8; font-size: 14px; }
.business-levels { display: none; width: auto; min-width: 0; margin: 0; gap: 4px; justify-content: space-between; padding: 5px; }
.level-btn { flex: 1; border: 0; background: transparent; color: #3437c8; border-radius: 999px; padding: 5px 10px; font-size: 14px; }
.level-btn.active { background: #3437c8; color: #fff; }
.cta-wrap { padding: 8px 20px 5px; }
.btn-zum-tarif { min-width: 205px; width: auto; height: 50px; padding: 0 34px; font-size: 22px; box-shadow: none; }
#tabGroup.is-company .person-box { display: none !important; }
#tabGroup.is-company .business-levels { display: flex !important; }
#tabGroup:not(.is-company) .business-levels { display: none !important; }
.tab-info-section { max-width: 786px; padding: 14px 0 64px; display: block; }
.tab-info { display: none; }
.tab-info-active { display: grid; grid-template-columns: 1fr 1.22fr; gap: 28px; align-items: stretch; padding: 0; background: transparent; border: 0; box-shadow: none; }
.ti-icon-wrap, .ti-text {
  min-height: 318px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: #3437c8;
  border: 1px solid rgba(52,55,200,.12);
  box-shadow: none;
}
.ti-icon-wrap { width: auto; height: auto; display: flex; align-items: center; justify-content: center; }
.ti-icon { width: 205px; height: 205px; color: #3437c8; }
.ti-text { padding: 30px 58px; text-align: left; }
.ti-text h3 { font-family: var(--font-display); font-size: 26px; line-height: 1; font-style: italic; color: #3437c8; margin: 12px 0 2px; }
.ti-badge { display: inline-block; background: #c8ccff; border-radius: 999px; padding: 6px 12px; color: #3437c8; font-size: 11px; font-weight: 800; }
.ti-subline { margin: 0 0 8px !important; }
.ti-text p { color: #3437c8; font-size: 12px; line-height: 1.35; margin: 0 0 10px; }
.ti-text strong { color: #3437c8; }
.ti-text ul { list-style: none; padding: 0; margin: 18px 0 0; }
.ti-text li { color: #3437c8; font-size: 11px; line-height: 1.45; margin: 10px 0; padding-left: 22px; position: relative; }
.ti-text li::before { content: '✓'; position: absolute; left: 0; font-weight: 800; }
.ti-text-plain { display: flex; align-items: center; }
.ti-text-plain p { font-size: 14px; line-height: 1.35; }
@media (max-width: 768px) {
  .calc-input-row { grid-template-columns: 1fr; }
  .person-box { border: 3px solid #3437c8; }
  .tab-info-active { grid-template-columns: 1fr; gap: 20px; }
  .ti-text { padding: 28px; }
}


.page-heading {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  margin-bottom: 34px;
}
.calc-card-body { padding: 22px 18px 20px; }
.calc-input-row {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px;
  padding: 0 0 10px;
}
#levelBox {
  display: none;
  align-items: center;
  justify-content: center;
}
.level-segment {
  border: 0;
  border-radius: 999px;
  display: flex;
  width: 100%;
  gap: 4px;
}
.level-segment .level-btn {
  border: 0;
  background: transparent;
  color: #3437c8;
  border-radius: 999px;
  padding: 5px 10px;
}
.level-segment .level-btn.active {
  background: #3437c8;
  color: #fff;
}
.large-commercial-link {
  width: 210px;
  margin: -7px 16px 0 auto;
  line-height: 1.25;
}
.tab-info-section {
  max-width: 826px;
  margin: 0 auto;
  padding: 14px 20px 64px;
}
.tab-info-active {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 28px;
  align-items: stretch;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.ti-icon-card,
.ti-product-card {
  min-height: 318px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(52,55,200,.12);
  box-shadow: none;
  color: #3437c8;
}
.ti-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ti-icon-card .ti-icon {
  width: 205px;
  height: 205px;
  color: #3437c8;
}
.ti-product-card {
  padding: 30px 58px;
  text-align: left;
}
.ti-product-card h3,
.ti-dynamic-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 128%;
  font-style: italic;
  font-weight: 700;
  margin: 12px 0 6px;
}
.ti-badge {
  display: inline-block;
  background: #c8ccff;
  border-radius: 999px;
  padding: 5px 12px;
  color: #3437c8;
  font-size: 11px;
  font-weight: 800;
}
.ti-product-card > p {
  color: #3437c8;
  font-size: 14px;
  line-height: 128%;
  margin: 0 0 10px;
}
.ti-headline { font-weight: 800; }
.ti-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.ti-features li {
  color: #3437c8;
  font-size: 14px;
  line-height: 128%;
  margin: 0px 0;
  padding-left: 22px;
  position: relative;
}
.ti-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 800;
}
@media (max-width: 768px) {
  .calc-input-row { grid-template-columns: 1fr !important; }
  .tab-info-active { grid-template-columns: 1fr; gap: 20px; }
  .ti-product-card { padding: 28px; }
}

.calc-card-body {
  position: relative;
  padding-bottom: 24px;
}
.calc-input-row {
  align-items: center;
}
.zip-box,
.person-box,
#levelBox,
.consumption-box {
  min-height: 62px;
  height: 62px;
}
.zip-box input {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.person-center {
  line-height: 1.1;
}
.person-center #personsNum {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 800;
}
.consumption-box::after {
  content: none !important;
}
.kwh-input-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  width: 100%;
  white-space: nowrap;
}
.consumption-box .kwh-input-wrap input,
.field-pill.dual-line .kwh-input-wrap input {
  width: 104px;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  text-align: right;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
  outline: none;
  -moz-appearance: textfield;
  text-align: center;
}
.consumption-box .kwh-input-wrap input::-webkit-outer-spin-button,
.consumption-box .kwh-input-wrap input::-webkit-inner-spin-button,
.field-pill.dual-line .kwh-input-wrap input::-webkit-outer-spin-button,
.field-pill.dual-line .kwh-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.kwh-unit {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.05;
  font-weight: 400;
}
.large-commercial-link {
  position: absolute;
  right: 24px;
  top: 170px;
  width: 220px;
  margin: 0;
  text-align: center;
  font-size: 14px;
}
.cta-wrap {
  margin-top: 18px;
}
#levelBox .level-segment {
  height: 100%;
  align-items: center;
}
#levelBox .level-btn {
  font-size: 16px;
  font-weight: 800;
}
#panel-1b .fs-card.wide {
  max-width: 720px;
}
#panel-1b .field-pill {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
#panel-1b .field-pill input {
  text-align: center;
}
#panel-1b .center-actions {
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}
#panel-1b .center-actions .btn-back {
  position: relative;
  top: 8px;
  font-size: 18px;
  font-weight: 800;
}
#panel-3 .fs-card.wide {
  max-width: 860px;
  padding-left: 80px;
  padding-right: 80px;
}
#panel-3 .field-pill input.readonly-field {
  background: #f7f8ff;
  cursor: default;
}
#billFields {
  background: var(--blue-soft);
  border-radius: 18px;
  padding: 18px 18px 4px;
  margin: 0 auto 40px;
/*  max-width: 550px; 620px;*/
}
#checkout-step-2 .lavender-bar .toggle-inline {
  justify-content: center;
}
#panel-large .fs-card {
  max-width: 660px;
  padding-left: 60px;
  padding-right: 60px;
}
#panel-fallback .fs-card {
  max-width: 760px;
  padding-left: 60px;
  padding-right: 60px;
}
#panel-fallback .field-pill {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
#panel-large .field-pill {
  max-width: 450px; /*620px;*/
  margin-left: auto;
  margin-right: auto;
}
#panel-large .field-pill.dual-line .kwh-input-wrap input {
  width: 138px;
  font-size: 24px;
}
#panel-large .field-pill.dual-line .kwh-unit {
  font-size: 16px;
}
#debitSection {
	background: rgb(238, 240, 255);
    border-radius: 18px;
    padding: 18px 18px 4px;
	max-width: 500px;
    margin: 0px auto;
    width: 100%;
}
@media (max-width: 820px) {
  .calc-card-body {
    padding-bottom: 34px;
  }
  .large-commercial-link {
    position: static;
    width: auto;
    margin: 0 auto 10px;
  }
  #panel-3 .fs-card.wide,
  #panel-large .fs-card,
  #panel-fallback .fs-card {
    padding-left: 24px;
    padding-right: 24px;
  }
}
 
@media (min-width: 821px) {
  #fs-app {
    zoom: 1.33;
  }
}

#fs-app.fs-hero-bg {
  background-image: linear-gradient(#3637bf38, #3637bf38), url("images/calculator-bg.jpg?v=2");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

#fs-app.fs-hero-bg #panel-1 {
  background: transparent;
}

#fs-app.fs-hero-bg .hero-section,
#fs-app.fs-hero-bg .tab-info-section {
  background: transparent;
}

.panel-2-footer {
  max-width: 560px;
  margin: 24px auto 0;
  text-align: center;
}

.panel-2-footer .btn-back {
  margin: 0;
}

#panel-3 .plan-bar,
#panel-3 .checkout-step .fs-card,
#panel-3 .checkout-step .fs-card.wide {
  max-width: 660px;
  width: 100%;
}

#panel-3 .plan-bar {
  margin-left: auto;
  margin-right: auto;
}

.field-pill input[type="date"] {
  text-align: center;
}

#panel-1 .zip-box::after {
  display: none;
}

#panel-1 .zip-box input {
  padding-right: 0;
}

#panel-1 .calc-card {
  padding-bottom: 0;
}

#panel-1 .calc-card-body {
  padding-bottom: 18px;
}

#addrZipDisplay.readonly-field {
  background: #f7f8ff;
  cursor: default;
}

.pc-details-btn {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pc-details-btn::after {
  content: ' \2192';
}

.delivery-start-title {
  margin-bottom: 10px;
}

.sepa-legal {
  color: var(--text-mid);
  font-size: 11px;
  font-style: italic;
  line-height: 1.45;
  margin: 10px 4px 0;
  text-align: left;
}

.price-legal-notice {
  max-width: 660px;
  margin: 24px auto 0;
  padding: 0 4px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 128%;
  text-align: left;
}

.price-legal-notice span {
  display: block;
  margin-top: 10px;
}

.thankyou-card--commercial {
  position: relative;
}

.thankyou-card--commercial .ty-spark-img {
  width: 64px;
  height: auto;
  display: block;
  margin: -88px auto 22px;
  object-fit: contain;
}

@media (max-width: 820px) {
  #fs-app {
    zoom: 1 !important;
  }

  #fs-app.fs-hero-bg {
    background-attachment: scroll;
  }

  .hero-section,
  .page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tariff-tabs {
    min-width: 0;
  }

  .ttab {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .center-actions {
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .center-actions .btn-back {
    margin-right: 0;
  }

  .benefits-row {
    max-width: 360px;
    gap: 0px;
    margin-bottom: 18px;
    text-align: left;
  }

  .benefit-item {
 /*   flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.25;
    text-align: left; */
    gap: 7px;
	text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .no-icons-benefits .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon,
  .benefit-icon--svg {
    width: 58px;
    height: 58px;
  }

  .plan-card {
    padding: 28px 22px 24px;
  }

  .pc-name {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .pc-fee {
    font-size: 36px;
  }

  .pc-buchen-btn {
    margin: 0 auto;
  }

  .lavender-bar .toggle-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .lavender-bar .toggle-inline .customer-switch-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .address-switcher {
    padding-top: 0;
  }
  .field-pill-email {
    margin-top: 0 !important;
  }

  .lavender-bar .bar-label {
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  html,
  body,
  #fs-app {
    max-width: 100%;
    overflow-x: hidden;
    zoom: 1 !important;
  }

  .page-heading {
    font-size: 30px;
	margin-bottom: 20px;
  }

  .hero-title {
    font-size: 34px;
  }

  .benefits-row {
/*	display: none; */
    grid-template-columns: 1fr; 
	gap: 8px;
	margin-bottom: 30px;
  }
  .benefits-row.benefits-row-gewerbe {
	margin-bottom: 22px;
  }
  
  .benefit-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.25;
    text-align: left;
    gap: 16px;
	text-align: left;
    padding-left: 0px;
    padding-right: 10px;
  }

  .benefit-icon,
  .benefit-icon--svg {
    width: 38px;
    height: 38px;
  }
  
  .card-intro {
	  margin-bottom: 14px;
  }
  
  .center-actions.center-actions-gewerbe {
	  margin-top: 0px;
  }

  #panel-1 .calc-card {
    border-radius: 8px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .calc-card-body {
    padding: 18px 14px 18px;
  }

  #panel-1 .tariff-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  #panel-1 .ttab {
    width: 100%;
    padding: 13px 6px;
    font-size: 13px;
  }

  #panel-1 .calc-input-row {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  #panel-1 .calc-box,
  #panel-1 .zip-box,
  #panel-1 .person-box,
  #panel-1 #levelBox,
  #panel-1 .consumption-box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .customer-switch-row {
    gap: 10px;
  }

  .switch-label {
    font-size: 16px;
  }

  #panel-3 .switch-label {
    font-size: 13px;
  }

  .field-pill {
    margin-bottom: 10px;
  }

  .field-pill input,
  .field-pill textarea,
  .field-pill select,
  #panel-3 .field-pill input,
  #panel-3 .field-pill textarea,
  #panel-3 .field-pill select {
    min-height: 50px;
    padding: 11px 16px;
    border-width: 2px;
    border-radius: 14px;
    font-size: 14px;
  }

  .gender-row {
    gap: 14px 20px;
    margin-bottom: 16px;
  }

  .fs-card,
  #panel-3 .fs-card.wide,
  #panel-large .fs-card,
  #panel-fallback .fs-card {
    padding: 22px 16px 28px;
  }

  .plan-bar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 12px 14px;
  }

  .pc-name {
    font-size: 25px;
  }

  .pc-fee {
    font-size: 32px;
  }

  .radio-row {
    gap: 8px;
    flex-direction: column;
  }

  .radio-inline {
    font-size: 13px;
  }

  .center-actions .btn-primary,
  .center-actions .btn-primary.wide,
  .center-actions .btn-back {
    max-width: 100%;
  }

  .price-legal-notice {
    font-size: 10px;
    padding: 0 6px;
  }
  
  #debitSection {
	  padding: 14px 0px 4px;
  }
  
  .lavender-bar .toggle-inline .customer-switch-row {
    padding: 8px 10px 8px;
  }
  .lavender-bar .toggle-inline .customer-switch-row.anbieter-switcher {
    gap: 10px;
    flex-direction: column;
    padding: 8px 10px 8px;
  }
  
  .review-row {
	grid-template-columns: minmax(0, 1fr);
    gap: 0px;
	font-size: 13px;
  }
}

.thankyou-page--commercial,
.thankyou-page--order {
  min-height: 100vh;
  padding: 86px 20px 56px;
  background: #eef0ff;
  overflow-x: hidden;
}

.thankyou-page--commercial {
  /*padding: 68px 20px;
  background: #ffffff;*/
}

#fs-app.fs-thankyou {
  zoom: 1;
}

.thankyou-commercial-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  color: #3437c8;
  font-family: var(--font-display);
  text-align: center;
  background: var(--white);
  padding: 50px 20px 50px;
  border-radius: 12px;
  box-shadow: 0 26px 64px rgba(52, 55, 200, 0.10);
}

.thankyou-commercial-inner .ty-spark-img {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto 40px;
  object-fit: contain;
}

.thankyou-commercial-inner h2 {
  max-width: 560px;
  margin: 0 auto 58px;
  color: #3437c8;
  font-size: 40px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.04;
}

.thankyou-commercial-inner .ty-sub {
  max-width: 660px;
  margin: 0 auto;
  color: #3437c8;
  font-size: 34px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.08;
}

.thankyou-commercial-inner .ty-sub span {
  display: block;
}

.thankyou-card,
.thankyou-frame {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 408px;
  padding: 50px 20px 50px;
  background: var(--white);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 26px 64px rgba(52, 55, 200, 0.10);
  text-align: center;
}

.thankyou-card--commercial .ty-spark-img,
.thankyou-frame .ty-spark-img { 
  width: 160px;
  height: 160px;
  margin:0 auto; 
  object-fit: contain; 
}

.thankyou-card--commercial h2,
.thankyou-frame h1 {
  margin: 0 0 34px;
  color: #3437c8;
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.15;
}

.thankyou-card--commercial .ty-sub,
.thankyou-frame .ty-lines {
  max-width: 590px;
  margin: 0 auto 44px;
  color: #3437c8;
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.55;
}

.thankyou-frame .ty-lines span {
  display: block;
}

.thankyou-card--commercial .btn-outline,
.thankyou-frame .btn-outline {
  min-width: 254px;
  height: 62px;
  margin-top: 0;
  padding: 0 28px;
  background: var(--white);
  border: 2px solid #3437c8;
  border-radius: var(--radius-pill);
  box-shadow: none;
  color: #3437c8;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .thankyou-page--commercial,
  .thankyou-page--order {
    align-items: flex-start;
    padding: 70px 16px 40px;
  }

  .thankyou-card,
  .thankyou-frame {
    width: calc(100vw - 32px);
    max-width: 100%;
    min-height: 0;
    padding: 72px 22px 38px;
    border-radius: 24px;
  }

  .thankyou-card--commercial .ty-spark-img,
  .thankyou-frame .ty-spark-img {
    /*top: -36px;
    width: 72px;
    height: 72px;*/
  }

  .thankyou-card--commercial h2,
  .thankyou-frame h1 {
    margin-bottom: 28px;
    /*font-size: 30px;*/
  }

  .thankyou-card--commercial .ty-sub,
  .thankyou-frame .ty-lines {
    margin-bottom: 38px;
    /*font-size: 22px;*/
    line-height: 1.45;
  }

  .thankyou-card--commercial .btn-outline,
  .thankyou-frame .btn-outline {
    width: 100%;
    min-width: 0;
    max-width: 254px;
    height: 54px;
    font-size: 17px;
  }

  .thankyou-page--commercial {
    justify-content: flex-start;
    padding: 44px 16px;
  }

  .thankyou-commercial-inner .ty-spark-img {
    width: 150px;
    height: 150px;
    margin-bottom: 44px;
  }

  .thankyou-commercial-inner h2 {
    max-width: 320px;
    margin-bottom: 42px;
    font-size: 34px;
  }

  .thankyou-commercial-inner .ty-sub {
    max-width: 340px;
    font-size: 34px;
  }
  
  
  .review-row {
	  gap: 0;
	  grid-template-columns: 1fr;
  }
  
  .btn-primary, .btn-outline, .btn-zum-tarif {
	  font-size: 18px;
  }
}

/* Final feedback adjustments */
.field-pill input:-webkit-autofill,
.field-pill input:-webkit-autofill:hover,
.field-pill input:-webkit-autofill:focus,
.zip-box input:-webkit-autofill,
.zip-box input:-webkit-autofill:hover,
.zip-box input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--blue);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}

.field-pill input:autofill,
.field-pill input:autofill:hover,
.field-pill input:autofill:focus,
.zip-box input:autofill,
.zip-box input:autofill:hover,
.zip-box input:autofill:focus {
  -webkit-text-fill-color: var(--blue);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}


.newsletter-consent {
  align-items: flex-start;
  line-height: 128%;
  font-weight: 400;
  margin-top: 0;
}

.newsletter-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.newsletter-outer {
  background: var(--blue-soft);
  border-radius: var(--radius-input);
  padding: 20px 13px;
  margin-bottom: 0;
}

.newsletter-privacy {
  margin: 10px 0 0 27px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 128%;
}

.newsletter-privacy a {
  color: inherit;
  text-decoration: underline;
}

.ti-badge .power-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

@media (max-width: 820px) {
  .panel,
  .hero-section,
  .page-wrap,
  .tab-info-section,
  .tab-info-active,
  .ti-product-card,
  .ti-text {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-wrap {
    overflow-x: hidden;
  }

  .page-heading {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(18px, 7vw, 32px) !important;
  }

 /* .benefit-icon,
  .benefit-icon--svg,
  .ti-icon-card {
    display: none;
  } */

  .benefits-row {
    max-width: 100%;
    padding: 0 8px;
  }

/*  .benefit-item {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    overflow-wrap: anywhere;
  } */

  .tab-info-active {
    grid-template-columns: minmax(0, 1fr);
  }

  .ti-product-card,
  .ti-text {
    min-width: 0;
    min-height: 0;
    padding: 24px 20px;
    overflow: hidden;
  }

  .ti-product-card *,
  .ti-text * {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .ti-features li {
    padding-right: 0;
  }

  .zip-box input {
    /*font-size: 14px;
    font-weight: 400;*/
  }

  .large-commercial-link {
    line-height: 1.45;
  }

  .pc-price-row {
    gap: 8px;
  }

  .pc-price-row span:last-child {
    white-space: nowrap;
  }

  .dv-info-table {
    table-layout: fixed;
  }

  .dv-info-table th,
  .dv-info-table td {
    padding-right: 8px;
    overflow-wrap: anywhere;
  }

  .plan-bar {
    overflow: hidden;
  }

  .pb-fee {
    font-size: 20px;
    white-space: nowrap;
  }

  .field-pill input[type="date"] {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .review-section {
    padding: 16px;
  }

  .review-row {
    
  }

  .review-row dt,
  .review-row dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .newsletter-privacy {
    margin-left: 27px;
  }

  .price-legal-notice {
    max-width: 100%;
    padding: 0 6px;
    overflow-wrap: anywhere;
  }

  .thankyou-card,
  .thankyou-frame,
  .thankyou-commercial-inner {
    max-width: 100%;
    overflow: hidden;
  }

  .thankyou-card--commercial h2,
  .thankyou-frame h1,
  .thankyou-commercial-inner h2,
  .thankyou-commercial-inner .ty-sub {
    max-width: 100%;
    font-size: clamp(26px, 9vw, 38px);
    overflow-wrap: anywhere;
  }
  
  .ti-icon-card {
	  display: none;
  }
}

@media (max-width: 768px) {
	.kwh-unit.kwh-calculator {
		position: absolute;
		right: 4px;
		bottom: 5px;
	}
	
	.kwh-input-wrap {
		position: relative;
	}
}


@media (max-width: 520px) {
  #panel-1 .ttab {
    min-width: 0;
    padding: 12px 3px;
    font-size: 11px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  #panel-1 .calc-card,
  #panel-1 .tariff-tabs {
    box-sizing: border-box;
    overflow: hidden;
  }

  .pc-fee {
    font-size: 25px;
  }
  
  .pb-fee {
    font-size: 16px;
  }
}


@media (max-height: 740px) and (min-width: 821px) {
	.page-heading {
		  margin-bottom: 24px;
	}
	
	.customer-switch-row {
		padding-bottom: 10px;
	}
	
	.calc-input-row {
		margin-bottom: 0px;
		padding-bottom: 5px;
	}
	
	.cta-wrap {
		margin-top: 0px;
		padding-bottom: 0px;
	}
	
	.large-commercial-link {
		top: 140px;
	}
}
