/* =========================================
   STROM-WECHSEL PRO – Fintech Design 2026
   Inspired by: wer-leiht-privat-geld.de style
   ========================================= */

:root {
  --c-primary:    #0F172A;
  --c-blue:       #1D4ED8;
  --c-blue-dark:  #1e40af;
  --c-blue-light: #eff6ff;
  --c-accent:     #06B6D4;
  --c-green:      #16A34A;
  --c-green-bg:   #f0fdf4;
  --c-warn:       #F59E0B;
  --c-bg:         #F8FAFC;
  --c-white:      #FFFFFF;
  --c-text:       #0F172A;
  --c-muted:      #64748B;
  --c-border:     #E2E8F0;
  --c-card:       #FFFFFF;

  --ff-head: 'Manrope', 'Inter', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:   0 4px 16px rgba(15,23,42,.10);
  --shadow-lg:   0 8px 32px rgba(15,23,42,.14);
  --shadow-blue: 0 4px 20px rgba(29,78,216,.30);

  --transition: .2s ease;
  --container:  1200px;
}

/* ─── Reset ─────────────────────────────────────── */
/* :where() hat Spezifität 0 – externe Widgets (BonKredit) können leicht überschreiben */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media(max-width:768px){ .container{ padding: 0 16px; } }

/* ─── HEADER ────────────────────────────────────── */
.sw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.sw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.sw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-primary);
  flex-shrink: 0;
  white-space: nowrap;
}
.sw-logo__icon {
  width: 38px; height: 38px;
  background: var(--c-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sw-logo__icon svg { width: 22px; height: 22px; fill: #fff; }
.sw-logo strong { color: var(--c-blue); }
.sw-logo em { font-style: normal; color: var(--c-muted); font-weight: 400; font-size: 14px; }

.sw-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.sw-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.sw-nav a:hover, .sw-nav .current-menu-item a {
  color: var(--c-blue);
  background: var(--c-blue-light);
}

.sw-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.sw-header__phone svg { color: var(--c-blue); width:18px; height:18px; }
.sw-header__phone small { display: block; font-size: 11px; font-weight: 400; color: var(--c-muted); line-height: 1.2; }

.sw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.sw-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.sw-hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.sw-hamburger.is-open span:nth-child(2){ opacity: 0; }
.sw-hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.sw-mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--c-white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}
.sw-mobile-menu.is-open { display: block; }
.sw-mobile-menu ul { list-style: none; }
.sw-mobile-menu li a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-primary);
}

@media(max-width:1024px){ .sw-nav { display: none; } }
@media(max-width:600px){
  .sw-header__phone { display: none; }
  .sw-hamburger { display: flex; }
}

/* ─── HERO ──────────────────────────────────────── */
.sw-hero {
  position: relative;
  background: var(--c-white);
  overflow: hidden;
  min-height: 580px;
}
.sw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.sw-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(248,250,252,.97) 45%, rgba(248,250,252,.7) 70%, rgba(248,250,252,.2) 100%);
}
.sw-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 64px 0 72px;
}
@media(max-width:1024px){
  .sw-hero__inner { grid-template-columns: 1fr; padding: 48px 0 56px; }
  .sw-hero__bg { opacity: .15; }
}

.sw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-blue-light);
  color: var(--c-blue);
  border: 1px solid rgba(29,78,216,.15);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sw-hero__badge svg { width: 14px; height: 14px; }

.sw-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.sw-hero h1 span { color: var(--c-blue); }

.sw-hero__sub {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.sw-hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.sw-hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-primary);
}
.sw-hero__checks li svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--c-green);
}

.sw-hero__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--c-muted);
}
.sw-hero__stars { color: #F59E0B; font-size: 16px; letter-spacing: -1px; }
.sw-hero__trust strong { color: var(--c-primary); }

/* Hero Rating Visual */
.sw-hero__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  width: fit-content;
}
.sw-hero__rating-score {
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.sw-hero__rating-label { font-size: 13px; color: var(--c-muted); }

/* ─── TRUST BAR ─────────────────────────────────── */
.sw-trustbar {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 16px 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sw-trustbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}
.sw-trustbar__item svg { width: 15px; height: 15px; color: var(--c-blue); }

/* ─── HERO WIDGET (Vergleichsformular) ──────────── */
.sw-hero-widget {
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(15,23,42,.15);
  padding: 32px;
  border: 1px solid var(--c-border);
  position: relative;
}
.sw-hero-widget__title {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 24px;
  text-align: center;
}

/* Step indicator */
.sw-widget-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.sw-ws { display: flex; align-items: center; gap: 0; }
.sw-ws__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.sw-ws__dot.active {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(29,78,216,.15);
}
.sw-ws__dot.done { background: var(--c-green); color: #fff; }
.sw-ws__line {
  width: 40px; height: 2px;
  background: var(--c-border);
}
.sw-ws__line.done { background: var(--c-green); }

.sw-widget-field {
  margin-bottom: 16px;
}
.sw-widget-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.sw-widget-field input[type="text"],
.sw-widget-field input[type="number"],
.sw-widget-field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-primary);
  background: var(--c-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.sw-widget-field input:focus,
.sw-widget-field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.sw-widget-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.sw-widget-field--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Toggle Ökostrom */
.sw-eco-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.sw-eco-toggle__btn {
  flex: 1;
  height: 44px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: var(--c-white);
  color: var(--c-muted);
  transition: all var(--transition);
}
.sw-eco-toggle__btn.active {
  border-color: var(--c-green);
  background: var(--c-green-bg);
  color: var(--c-green);
  font-weight: 600;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--ff-head);
}
.sw-btn--primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
  width: 100%;
}
.sw-btn--primary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(29,78,216,.4);
}
.sw-btn--primary svg { width: 18px; height: 18px; }

.sw-widget__secure {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sw-widget__secure svg { width: 13px; height: 13px; color: var(--c-green); }

/* ─── SECTION UTILS ─────────────────────────────── */
.sw-section {
  padding: 80px 0;
}
.sw-section--bg {
  background: var(--c-white);
}
.sw-section--dark {
  background: var(--c-primary);
  color: #fff;
}
.sw-section--light {
  background: var(--c-bg);
}

.sw-section__head {
  text-align: center;
  margin-bottom: 52px;
}
.sw-section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  display: block;
}
.sw-section__head h2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sw-section--dark .sw-section__head h2 { color: #fff; }
.sw-section__sub {
  font-size: 17px;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── FEATURE CARDS ─────────────────────────────── */
.sw-features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
@media(max-width:900px){ .sw-features { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .sw-features { grid-template-columns: 1fr; } }

.sw-feature-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.sw-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sw-feature-card__icon {
  width: 48px; height: 48px;
  background: var(--c-blue-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sw-feature-card__icon svg { width: 24px; height: 24px; color: var(--c-blue); }
.sw-feature-card h3 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.sw-feature-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ─── STEPS ─────────────────────────────────────── */
.sw-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
@media(max-width:768px){ .sw-steps { grid-template-columns: 1fr; gap: 32px; } }

.sw-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.6% + 24px);
  right: calc(16.6% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-border) 0%, var(--c-blue) 50%, var(--c-border) 100%);
  background-size: 200% 100%;
}
@media(max-width:768px){ .sw-steps::before { display: none; } }

.sw-step {
  text-align: center;
  padding: 0 24px;
}
.sw-step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
}
.sw-step__icon {
  width: 64px; height: 64px;
  background: var(--c-blue-light);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(29,78,216,.1);
}
.sw-step__icon svg { width: 32px; height: 32px; color: var(--c-blue); }
.sw-step h3 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.sw-step p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.65;
}
.sw-step--connector {
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
  color: var(--c-muted);
}
.sw-step--connector svg { width: 24px; height: 24px; }

/* ─── PROVIDER LOGOS ────────────────────────────── */
.sw-providers {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}
@media(max-width:900px){ .sw-providers { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px){ .sw-providers { grid-template-columns: repeat(2,1fr); } }

.sw-provider-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.sw-provider-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.08);
  transform: translateY(-2px);
}
.sw-provider-card__logo {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -.5px;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.sw-provider-card:hover .sw-provider-card__logo { color: var(--c-primary); }
.sw-provider-card__rating {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.sw-provider-card__stars { color: var(--c-warn); font-size: 12px; }
.sw-provider-card__price {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-blue);
  margin-top: 6px;
}
.sw-provider-card__eco {
  display: inline-block;
  background: var(--c-green-bg);
  color: var(--c-green);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: 6px;
}
.sw-all-link {
  text-align: center;
  margin-top: 12px;
}
.sw-all-link a {
  color: var(--c-blue);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.sw-all-link a:hover { gap: 8px; }

/* ─── CALCULATOR ────────────────────────────────── */
.sw-calc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media(max-width:900px){ .sw-calc { grid-template-columns: 1fr; } }

.sw-calc__left h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.sw-calc__left p { color: var(--c-muted); margin-bottom: 24px; font-size: 15px; }

.sw-range-field { margin-bottom: 24px; }
.sw-range-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sw-range-field label { font-size: 14px; font-weight: 600; color: var(--c-primary); }
.sw-range-field__val {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-blue);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--c-border);
  border-radius: var(--r-full);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(29,78,216,.3);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 3px solid #fff;
  cursor: pointer;
}

.sw-calc__select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-primary);
  background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sw-calc__select:focus { outline: none; border-color: var(--c-blue); }

.sw-calc__result {
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.sw-calc__result-label {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 8px;
  text-align: center;
}
.sw-calc__result-rate {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--c-blue);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1;
}
.sw-calc__result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--c-bg);
  border-radius: var(--r-md);
}
.sw-calc__detail-item span { font-size: 12px; color: var(--c-muted); display: block; }
.sw-calc__detail-item strong {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
}

.sw-calc__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-calc__perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-primary);
}
.sw-calc__perks svg { width: 18px; height: 18px; color: var(--c-green); flex-shrink: 0; }

/* ─── CHECK24 WIDGET ────────────────────────────── */
.sw-check24-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.sw-check24-wrap h2 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.sw-check24-wrap p { color: var(--c-muted); margin-bottom: 24px; }
#c24pp-power-iframe { min-height: 400px; }

/* ─── FAQ ───────────────────────────────────────── */
.sw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media(max-width:768px){ .sw-faq-grid { grid-template-columns: 1fr; } }

.sw-faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.sw-faq-item.is-open {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.08);
}
.sw-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-primary);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.sw-faq-item__q svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--c-blue);
  transition: transform var(--transition);
}
.sw-faq-item.is-open .sw-faq-item__q svg { transform: rotate(180deg); }
.sw-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
}
.sw-faq-item.is-open .sw-faq-item__a {
  max-height: 400px;
  padding: 0 20px 18px;
}
.sw-faq-more {
  text-align: center;
}
.sw-faq-more a {
  color: var(--c-blue);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ─── BLOG CARDS ────────────────────────────────── */
.sw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media(max-width:900px){ .sw-blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .sw-blog-grid { grid-template-columns: 1fr; } }

.sw-blog-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.sw-blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sw-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-blue-light), rgba(6,182,212,.1));
}
.sw-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sw-blog-card__body { padding: 20px; }
.sw-blog-card__cat {
  display: inline-block;
  background: var(--c-blue-light);
  color: var(--c-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}
.sw-blog-card h3 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.sw-blog-card__excerpt {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.sw-blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.sw-blog-card__link:hover { gap: 8px; }

/* ─── BOTTOM TRUST BAR ──────────────────────────── */
.sw-bottom-trust {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  padding: 48px 0;
}
@media(max-width:900px){ .sw-bottom-trust { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px){ .sw-bottom-trust { grid-template-columns: repeat(2,1fr); } }

.sw-bt-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sw-bt-item__icon {
  width: 48px; height: 48px;
  background: var(--c-blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sw-bt-item__icon svg { width: 22px; height: 22px; color: var(--c-blue); }
.sw-bt-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  display: block;
}
.sw-bt-item span {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ─── NEWSLETTER ────────────────────────────────── */
.sw-newsletter {
  background: linear-gradient(135deg, var(--c-blue) 0%, #1e40af 100%);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media(max-width:768px){ .sw-newsletter { grid-template-columns: 1fr; } }

.sw-newsletter h2 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.sw-newsletter p { color: rgba(255,255,255,.8); font-size: 14px; }

.sw-newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media(max-width:500px){ .sw-newsletter-form { flex-direction: column; } }

.sw-newsletter-form input {
  height: 52px;
  padding: 0 20px;
  border-radius: var(--r-md);
  border: none;
  font-size: 15px;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 260px;
  backdrop-filter: blur(10px);
  transition: background var(--transition);
}
.sw-newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.sw-newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,.2);
}
.sw-btn--white {
  background: #fff;
  color: var(--c-blue);
  font-weight: 700;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--r-md);
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--ff-head);
  white-space: nowrap;
  transition: all var(--transition);
}
.sw-btn--white:hover {
  background: var(--c-bg);
  transform: translateY(-1px);
}
.sw-nl-note {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ─── FOOTER ────────────────────────────────────── */
.sw-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.sw-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media(max-width:1024px){ .sw-footer__grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px){ .sw-footer__grid { grid-template-columns: 1fr 1fr; } }

.sw-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 20px;
}
.sw-footer__social {
  display: flex;
  gap: 8px;
}
.sw-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.sw-footer__social a:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}

.sw-footer__col h4 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.sw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sw-footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.sw-footer__col ul li a:hover { color: #fff; }

.sw-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.sw-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.sw-footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-accent);
}
.sw-footer__contact-item a { color: #fff; font-weight: 600; }

.sw-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.sw-footer__logo-icon {
  width: 34px; height: 34px;
  background: var(--c-blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.sw-footer__logo-icon svg { width: 18px; height: 18px; fill: #fff; }

.sw-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.sw-footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.sw-footer__bottom a:hover { color: #fff; }
.sw-footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ─── CITY LANDING PAGE ─────────────────────────── */
.sw-city-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.sw-city-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(6,182,212,.08);
  border-radius: 50%;
}
.sw-city-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}
.sw-city-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.sw-city-stat {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 14px 20px;
}
.sw-city-stat__val {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.sw-city-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* ─── PAGE TEMPLATES ────────────────────────────── */
.sw-page-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.sw-page-hero h1 {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}
.sw-page-hero p { font-size: 18px; color: rgba(255,255,255,.75); }

.sw-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.sw-content-wrap h1,.sw-content-wrap h2,.sw-content-wrap h3 {
  font-family: var(--ff-head);
  color: var(--c-primary);
  font-weight: 700;
  margin: 28px 0 12px;
}
.sw-content-wrap h2 { font-size: 26px; }
.sw-content-wrap h3 { font-size: 20px; }
.sw-content-wrap p  { margin-bottom: 16px; color: var(--c-muted); line-height: 1.75; }
.sw-content-wrap ul,.sw-content-wrap ol {
  margin: 0 0 16px 24px;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ─── BREADCRUMB ────────────────────────────────── */
.sw-breadcrumb {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
}
.sw-breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--c-muted);
}
.sw-breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.sw-breadcrumb a { color: var(--c-blue); }

/* ─── ADMIN CSS ─────────────────────────────────── */
.sw-admin-wrap { max-width: 1000px; }
.sw-admin-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 24px 0;
}
.sw-admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sw-card-icon { font-size: 28px; }
.sw-admin-card strong { font-size: 32px; font-weight: 800; color: #0f172a; font-family: 'Manrope',sans-serif; }
.sw-admin-card span { font-size: 13px; color: #64748b; }
.sw-admin-actions { background: #f8fafc; border-radius: 12px; padding: 24px; margin-top: 8px; }
.sw-btn-large { height: 44px !important; padding: 0 24px !important; font-size: 15px !important; }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sw-hero h1,.sw-hero__badge,.sw-hero__sub,.sw-hero__checks {
  animation: fadeInUp .5s ease both;
}
.sw-hero__badge    { animation-delay: .05s; }
.sw-hero h1        { animation-delay: .1s; }
.sw-hero__sub      { animation-delay: .2s; }
.sw-hero__checks   { animation-delay: .3s; }
.sw-hero-widget    { animation: fadeInUp .5s ease .15s both; }

/* ─── PRINT ─────────────────────────────────────── */
@media print {
  .sw-header,.sw-footer,.sw-hero-widget { display: none; }
}

/* ─── BREADCRUMB (ks-breadcrumb) ────────────────── */
.ks-breadcrumb {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
}
.ks-breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--c-muted);
}
.ks-breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--c-muted); }
.ks-breadcrumb a { color: var(--c-blue); transition: color var(--transition); }
.ks-breadcrumb a:hover { color: var(--c-blue-dark); }
.ks-breadcrumb li:last-child span { color: var(--c-primary); font-weight: 500; }

/* ─── ADMIN (ks-) ────────────────────────────────── */
.ks-admin-wrap { max-width: 1000px; padding: 20px 0; }
.ks-admin-wrap h1 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.ks-admin-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 20px 0; }
.ks-admin-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.ks-card-icon { font-size: 28px; }
.ks-admin-card strong { font-size: 28px; font-weight: 800; color: #0f172a; font-family: "Manrope",sans-serif; }
.ks-admin-card span { font-size: 13px; color: #64748b; }
.ks-admin-actions { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-top: 4px; }
.ks-admin-actions h2 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.ks-btn-large { height: 44px !important; padding: 0 20px !important; font-size: 14px !important; border-radius: 8px !important; }
#ks-action-log { font-size: 12px; line-height: 1.7; }


/* ─── BonKredit iframe ──────────────────────────── */
.ks-form-frame-wrap {
  padding: 0 !important;
  overflow: hidden !important;
}
.ks-form-frame-wrap iframe {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.ks-form-frame-wrap .sw-widget__secure {
  padding: 8px 16px 12px;
}

/* ════════════════════════════════════════════════════
   KS KREDIT FORM – Eigenes Formular
   ════════════════════════════════════════════════════ */
.ksf-wrap {
  width: 100%;
  font-family: var(--ff-body);
  color: var(--c-primary);
}

/* ── Schritte ── */
.ksf-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.ksf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ksf-step span {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
  white-space: nowrap;
}
.ksf-step.active span  { color: var(--c-blue); font-weight: 700; }
.ksf-step.done   span  { color: var(--c-green); }
.ksf-step__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-muted);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.ksf-step.active .ksf-step__dot {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(29,78,216,.15);
}
.ksf-step.done .ksf-step__dot {
  background: var(--c-green);
  color: #fff;
}
.ksf-step__line {
  width: 32px; height: 2px;
  background: var(--c-border);
  margin: 0 4px;
  margin-bottom: 16px;
}

/* ── Panels ── */
.ksf-panel { display: none; }
.ksf-panel.active { display: block; animation: fadeInUp .3s ease; }

/* ── Titel ── */
.ksf-title {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 16px;
  text-align: center;
}
.ksf-sub {
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  margin: -10px 0 16px;
}

/* ── Betrag-Anzeige ── */
.ksf-amount-display {
  text-align: center;
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: 10px;
  line-height: 1;
}

/* ── Slider ── */
.ksf-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--c-border);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  margin-bottom: 6px;
}
.ksf-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(29,78,216,.3);
  cursor: pointer;
}
.ksf-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 3px solid #fff;
  cursor: pointer;
}
.ksf-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-muted);
  margin-bottom: 4px;
}

/* ── Radio Buttons ── */
.ksf-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ksf-radio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  transition: all .2s ease;
  background: var(--c-white);
  user-select: none;
}
.ksf-radio-btn input[type="radio"] { display: none; }
.ksf-radio-btn.active {
  border-color: var(--c-blue);
  background: var(--c-blue-light);
  color: var(--c-blue);
  font-weight: 600;
}
.ksf-radio-btn:hover { border-color: var(--c-blue); }

/* ── Felder ── */
.ksf-field { margin-bottom: 14px; }
.ksf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 6px;
}
.ksf-input,
.ksf-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--c-primary);
  background: var(--c-white);
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.ksf-input:focus,
.ksf-select:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.ksf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.ksf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Datenschutz ── */
.ksf-dsgvo {
  margin: 16px 0;
  padding: 12px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.ksf-checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--c-muted);
  cursor: pointer;
  align-items: flex-start;
  line-height: 1.5;
}
.ksf-checkbox-label input { margin-top: 2px; flex-shrink: 0; }
.ksf-checkbox-label a { color: var(--c-blue); }
.ksf-error { color: #dc2626; font-size: 12px; margin-top: 6px; }

/* ── Buttons ── */
.ksf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--ff-head);
  cursor: pointer;
  transition: all .2s ease;
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
}
.ksf-btn-next,
.ksf-btn-submit {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29,78,216,.3);
}
.ksf-btn-next:hover,
.ksf-btn-submit:hover {
  background: var(--c-blue-dark);
  transform: translateY(-1px);
}
.ksf-btn--ghost {
  background: transparent;
  color: var(--c-muted);
  border: 1.5px solid var(--c-border);
  box-shadow: none;
}
.ksf-btn--ghost:hover { border-color: var(--c-blue); color: var(--c-blue); }
.ksf-btn-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 8px;
}
.ksf-btn-row .ksf-btn--ghost { width: auto; padding: 0 16px; }

/* ── Erfolg ── */
.ksf-success {
  text-align: center;
  padding: 16px 0;
}
.ksf-success__icon {
  width: 64px; height: 64px;
  background: var(--c-green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--c-green);
}
.ksf-success h3 {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.ksf-success p { font-size: 14px; color: var(--c-muted); margin-bottom: 16px; }

.ksf-loader {
  height: 6px;
  background: var(--c-border);
  border-radius: 99px;
  overflow: hidden;
  margin: 16px 0;
}
.ksf-loader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-blue), var(--c-accent));
  border-radius: 99px;
  transition: width .05s linear;
}
.ksf-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 8px !important;
}

/* ── Bottom Note ── */
.ksf-bottom-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 12px;
}

@media (max-width: 400px) {
  .ksf-radio-group { grid-template-columns: 1fr; }
  .ksf-grid-2 { grid-template-columns: 1fr; }
}
