@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================================
   RR Speicher-Rechner – Optik im Look des hochgeladenen Entwurfs
   Struktur/Logik/Klassen des BESTEHENDEN Rechners bleiben unveraendert;
   hier wird ausschliesslich das Aussehen angepasst.
   ============================================================ */

.speicher-stepper{
  --yellow:#FBF315; --yellow-soft:#fffdf0; --yellow-line:#f1e78a; --yellow-strong:#d9cf00; --yellow-hover:#E8E010;
  --dark:#222326;
  --blue:#4F9FC5; --blue-bg:#eef7fc; --blue-line:#cbe3f0; --blue-ink:#2f7ba3;
  --card:#ffffff; --line:#E3E6EC; --line2:#f1f3f6;
  --ink:#222326; --ink-2:#5b6472; --ink-3:#96a0ad;
  --amber-ink:#a8820a; --green:#48B873; --green-bg:#edf8f1; --green-ink:#2e8a52;
  --sh-sm:0 1px 2px rgba(34,35,38,.05); --sh-md:0 16px 32px rgba(34,35,38,.05),0 4px 12px rgba(34,35,38,.04);
  --r-lg:24px; --r-md:16px;
  font-family:'Inter','Segoe UI',Helvetica,Arial,sans-serif;
  color:var(--ink); line-height:1.56; font-size:15px; -webkit-font-smoothing:antialiased;
  /* Keine eigene Maximalbreite: das Modul uebernimmt die Content-Breite
     der Section, in die es eingefuegt wird. Seitliche Abstaende regelt
     die Section. */
  width:100%; margin:0; padding:0;
  /* Abstand, den das Scrollen beim Schrittwechsel oben freilaesst,
     damit die klebende Kopfzeile der Seite den Titel nicht verdeckt. */
  scroll-margin-top:96px;
}
.speicher-stepper *{box-sizing:border-box}
.speicher-stepper svg{display:block}
.speicher-stepper button,.speicher-stepper input{font:inherit}
.speicher-stepper h3,.speicher-stepper p{margin-top:0}

/* Karte */
.speicher-stepper .stp-card{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--r-lg); box-shadow:var(--sh-md); overflow:hidden;
}

/* Kopf: hell statt dunkel, Titel dunkel, darueber der Fortschritt */
.speicher-stepper .stp-head{
  padding:22px 24px 18px; background:#fff; color:var(--ink);
  border-bottom:1px solid var(--line2);
  display:flex; flex-direction:column-reverse; gap:14px; align-items:stretch;
}
.speicher-stepper .stp-eyebrow{
  margin:0; font-size:12px; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:var(--ink-3);
}
.speicher-stepper .stp-title{
  font-size:20px; font-weight:800; color:var(--ink); line-height:1.25; margin:2px 0 0;
}
.speicher-stepper .stp-progress{
  display:flex; flex-direction:column; gap:8px;
}
.speicher-stepper .stp-progress > span,
.speicher-stepper .stp-progress [data-role="progressLabel"]{
  font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-3);
  order:2;
}
.speicher-stepper .stp-progress-bar{
  height:5px; border-radius:99px; background:var(--line); overflow:hidden; order:1;
}
.speicher-stepper .stp-progress-bar > i{
  display:block; height:100%; background:var(--yellow); border-radius:99px;
  transition:width .35s ease; min-width:8px;
}

/* Body / Schritte */
.speicher-stepper .stp-body{padding:22px 24px}
.speicher-stepper .stp-step{display:none}
.speicher-stepper .stp-step.is-active{display:block; animation:stpIn .32s ease}
@keyframes stpIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.speicher-stepper .stp-step.is-active{animation:none}}

.speicher-stepper .stp-help{font-size:13px;color:var(--ink-3);margin-top:8px;line-height:1.5}
.speicher-stepper .stp-price-note{font-size:13px;color:var(--ink-3);margin-top:10px;line-height:1.5}

/* Paket-Karten.
   Die Spaltenzahl richtet sich nach der tatsaechlich verfuegbaren Breite des
   Moduls, nicht nach der Fensterbreite - sonst greifen vier Spalten auch in
   einer schmalen Section. Dafuer ist .stp-body als Container deklariert. */
.speicher-stepper .stp-body{container-type:inline-size; container-name:stepper}
.speicher-stepper .stp-packages{
  display:grid; grid-template-columns:1fr; gap:14px;
}
@container stepper (min-width:460px){
  .speicher-stepper .stp-packages{grid-template-columns:repeat(2,1fr); gap:12px}
}
@container stepper (min-width:840px){
  .speicher-stepper .stp-packages{grid-template-columns:repeat(4,1fr); gap:14px}
}
/* einspaltig ist Platz: flacheres Foto, damit die Karte nicht zu hoch wird */
@container stepper (max-width:459px){
  .speicher-stepper .pkg-media img{aspect-ratio:16/7}
}
/* Rueckfallebene fuer Browser ohne Container-Queries */
@supports not (container-type:inline-size){
  @media(min-width:520px){.speicher-stepper .stp-packages{grid-template-columns:repeat(2,1fr)}}
  @media(min-width:1000px){.speicher-stepper .stp-packages{grid-template-columns:repeat(4,1fr)}}
}
.speicher-stepper .stp-packages > *{
  position:relative; display:block; width:100%; text-align:left;
  border:1.5px solid var(--line); border-radius:var(--r-md);
  padding:15px 14px; cursor:pointer; background:#fff; color:var(--ink);
  transition:.16s;
}
.speicher-stepper .stp-packages > *:hover{
  border-color:var(--yellow-line); box-shadow:var(--sh-md); transform:translateY(-2px);
}
.speicher-stepper .stp-packages > *.active,
.speicher-stepper .stp-packages > *[aria-checked="true"],
.speicher-stepper .stp-packages > *[aria-pressed="true"],
.speicher-stepper .stp-packages > *.is-active,
.speicher-stepper .stp-packages > *[data-active="true"]{
  border-color:var(--yellow-strong);
  background:linear-gradient(180deg,#fffef6,#fff);
  box-shadow:0 0 0 3px rgba(217,207,0,.20);
}
.speicher-stepper .stp-pkg-price{
  font-size:24px; font-weight:800; color:var(--ink); letter-spacing:-.02em; line-height:1.1; margin-top:6px;
}
.speicher-stepper .stp-pkg-sub{
  margin-top:6px; font-size:12.5px; font-weight:600; color:var(--blue-ink); line-height:1.3;
}

/* Felder / Slider (Schritt 2) */
.speicher-stepper .stp-field{margin-bottom:18px}
.speicher-stepper .stp-field label{
  display:block; font-size:16px; color:var(--ink-2); font-weight:500; margin-bottom:6px;
}
.speicher-stepper input[type=range]{
  -webkit-appearance:none; appearance:none; width:100%; height:22px;
  background:transparent; outline:none; cursor:pointer; margin:6px 0;
}
/* Die Spur wird von .stp-range-track gezeichnet, der Regler selbst ist
   durchsichtig. So bleiben seine Styles waehrend des Ziehens unveraendert. */
/* Die native Spur bekommt die volle Reglerhoehe. Dadurch zentriert der
   Browser den Knopf von selbst in der Mitte des Reglers - genau dort, wo
   auch die gezeichnete Spur liegt. Der frueher noetige margin-top-Versatz
   entfaellt damit. */
.speicher-stepper input[type=range]::-webkit-slider-runnable-track{
  height:22px; border-radius:99px; background:transparent;
}
.speicher-stepper input[type=range]::-moz-range-track{height:22px;border-radius:99px;background:transparent}
.speicher-stepper input[type=range]::-moz-range-progress{background:transparent}

.speicher-stepper .stp-range{position:relative; margin:6px 0}
.speicher-stepper .stp-range-track{
  position:absolute; left:0; right:0; top:50%; transform:translateY(-50%);
  height:8px; border-radius:99px; background:var(--line);
  overflow:hidden; pointer-events:none;
}
.speicher-stepper .stp-range-fill{
  display:block; height:100%; width:0; border-radius:99px; background:var(--yellow);
}
/* display:block ist entscheidend. Als inline-block erzeugt das Eingabefeld
   darunter den Zeilenabstand einer Textzeile, der Container wird hoeher
   als der Regler und die mittig gesetzte Spur rutscht unter den Knopf. */
.speicher-stepper .stp-range input[type=range]{position:relative; z-index:1; margin:0; display:block}
.speicher-stepper input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; width:22px; height:22px; margin-top:0; border-radius:50%;
  background:#fff; border:2.5px solid var(--yellow-strong); box-shadow:0 3px 8px rgba(34,35,38,.18); cursor:pointer;
}
.speicher-stepper input[type=range]::-moz-range-thumb{
  width:22px; height:22px; border-radius:50%; background:#fff; border:2.5px solid var(--yellow-strong); cursor:pointer;
}
.speicher-stepper input[type=number],
.speicher-stepper input[type=text]:not([type=range]){
  border:1.5px solid var(--line); background:#fafbfc; border-radius:12px;
  padding:10px 12px; font-size:15.5px; font-weight:700; color:var(--ink); width:120px; text-align:right;
}
.speicher-stepper input:not([type=range]):focus{
  outline:none; border-color:var(--yellow-strong); box-shadow:0 0 0 4px var(--yellow-soft); background:#fff;
}
/* Regler: Fokusring nur bei Tastaturbedienung, damit beim Ziehen mit der
   Maus keine Style-Aenderung am Element ausgeloest wird. */
.speicher-stepper input[type=range]:focus{outline:none}
.speicher-stepper input[type=range]:focus-visible{outline:3px solid var(--yellow-strong); outline-offset:3px}

/* Verbrauchs-Recap (Schritt 2) */
.speicher-stepper .stp-consumption-recap{
  border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; margin-top:16px;
}
.speicher-stepper .stp-consumption-recap > *{
  display:flex; justify-content:space-between; align-items:baseline; gap:14px;
  flex-wrap:wrap; padding:13px 16px; border-bottom:1px solid var(--line2); font-size:14.5px;
}
.speicher-stepper .stp-consumption-recap > *:last-child{border-bottom:none}
.speicher-stepper .stp-consumption-recap > * > span:first-child{color:var(--ink-2)}
.speicher-stepper .stp-consumption-recap b{font-weight:800;color:var(--ink);white-space:nowrap}
.speicher-stepper .stp-recap-detail{font-size:13.5px;color:var(--ink-3)}
.speicher-stepper .stp-recap-detail span:last-child{text-align:right}
.speicher-stepper .stp-recap-hint{color:var(--ink-3);font-size:13px}

/* Toggles (Schritt 3) */
.speicher-stepper .stp-toggle-grid{display:flex;flex-direction:column;gap:2px}
.speicher-stepper .stp-toggle{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 0; border-bottom:1px solid var(--line2);
}
.speicher-stepper .stp-toggle:last-child{border-bottom:none}
.speicher-stepper .stp-toggle-label{font-size:15.5px;color:var(--ink);font-weight:600;display:flex;align-items:center;gap:10px}
/* Lucide-Icons: inline eingebettet, kein externer Host */
.speicher-stepper .stp-ico{width:20px;height:20px;flex:0 0 auto;fill:none;stroke:var(--ink-2);stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.speicher-stepper .stp-seg{
  display:flex; background:var(--line); border-radius:99px; padding:3px; gap:3px; flex-shrink:0;
}
.speicher-stepper .stp-seg button{
  border:none; background:none; border-radius:99px; padding:9px 16px;
  font-size:14.5px; font-weight:700; color:var(--ink-3); cursor:pointer; transition:.16s;
}
.speicher-stepper .stp-seg button small{display:block;font-size:11px;font-weight:600;opacity:.8}
.speicher-stepper .stp-seg button.active{
  background:#fff; color:var(--ink); box-shadow:0 2px 8px rgba(34,35,38,.12);
}
.speicher-stepper .stp-seg button.active[data-val="yes"]{color:var(--green-ink)}

/* Zusammenfassung (Schritt 4) */
.speicher-stepper .stp-summary{
  border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; margin-bottom:16px;
}
/* Die Zusammenfassung wird per JS als <table> gerendert. Deshalb hier echte
   Tabellen-Styles: die frueheren "> *"-Regeln trafen die Tabelle als Ganzes,
   dadurch bekam sie display:flex und die Zellen brachen aus dem Layout aus. */
.speicher-stepper .stp-summary table{
  width:100%; border-collapse:collapse; font-size:14.5px;
}
.speicher-stepper .stp-summary td{
  padding:13px 16px; border-bottom:1px solid var(--line2); vertical-align:baseline;
}
.speicher-stepper .stp-summary tr:last-child td{border-bottom:none}
.speicher-stepper .stp-summary td:first-child{color:var(--ink-2)}
.speicher-stepper .stp-summary td:last-child{text-align:right; font-weight:600}
.speicher-stepper .stp-summary tr:first-child td{background:var(--yellow-soft)}
.speicher-stepper .stp-summary tr.stp-sum-price td{font-weight:800; color:var(--ink)}
/* Gruener Hinweis: ueber die ganze Breite, randlos in die Karte eingepasst */
.speicher-stepper .stp-summary td.stp-sum-note{
  background:var(--green-bg); border-top:1px solid #cfe9d8; border-bottom:none;
  color:var(--green-ink); font-size:13px; line-height:1.55;
  text-align:left; font-weight:400; padding:14px 16px;
}

/* Eingebettetes HubSpot-Formular */
.speicher-stepper .stp-form{margin-top:4px}
.speicher-stepper .stp-form-loading{font-size:13px;color:var(--ink-3);padding:8px 0}
.speicher-stepper .stp-form input[type=email],
.speicher-stepper .stp-form input[type=text],
.speicher-stepper .stp-form input[type=tel]{
  width:100%; border:1.5px solid var(--line); background:#fafbfc; border-radius:12px;
  padding:14px 15px; font-size:15px; color:var(--ink); text-align:left; font-weight:400;
}
.speicher-stepper .stp-form .hs-button,
.speicher-stepper .stp-form input[type=submit]{
  background:var(--yellow); color:var(--dark); border:1px solid var(--yellow-strong);
  border-radius:12px; padding:14px 18px; font-weight:800; font-size:15px; cursor:pointer;
  box-shadow:var(--sh-md); width:100%;
}
.speicher-stepper .stp-form .hs-button:hover,
.speicher-stepper .stp-form input[type=submit]:hover{background:var(--yellow-hover)}

/* Fusszeile / Navigation */
.speicher-stepper .stp-footer{
  display:flex; gap:10px; padding:16px 24px 20px; border-top:1px solid var(--line2);
}
.speicher-stepper .stp-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:800; font-size:15px; border-radius:12px; padding:15px 18px; cursor:pointer;
  transition:.15s; border:none;
}
.speicher-stepper .stp-btn-primary{
  flex:1; background:var(--yellow); color:var(--dark); border:1px solid var(--yellow-strong); box-shadow:var(--sh-md);
}
.speicher-stepper .stp-btn-primary:hover{background:var(--yellow-hover);transform:translateY(-2px)}
.speicher-stepper .stp-btn-primary:active{background:var(--yellow-strong);transform:none}
.speicher-stepper .stp-btn-ghost{
  background:#fff; color:var(--ink); border:2px solid var(--ink); padding:14px 18px;
}
.speicher-stepper .stp-btn-ghost:hover{background:#f3f4f6}

@media(max-width:600px){
  .speicher-stepper .stp-head{padding:18px 16px 14px}
  .speicher-stepper .stp-body{padding:18px 16px}
  .speicher-stepper .stp-footer{padding:14px 16px 16px}
  .speicher-stepper .stp-title{font-size:16px}
}

/* ===== Paketkarten: Produktfoto oben, Textteil darunter ===== */
.speicher-stepper .stp-packages > .stp-pkg{padding:0; overflow:hidden; display:flex; flex-direction:column}

.speicher-stepper .pkg-media{position:relative; background:#f4f5f7; line-height:0}
.speicher-stepper .pkg-media img{
  display:block; width:100%; aspect-ratio:16/9; object-fit:cover;
}
/* gelber Kreis mit Batterie-Glyph, ueberlappt die Fotounterkante */
.speicher-stepper .pkg-icon{
  position:absolute; left:14px; bottom:-22px; z-index:2;
  width:44px; height:44px; border-radius:50%;
  background:var(--yellow); box-shadow:var(--sh-sm);
  display:flex; align-items:center; justify-content:center;
}
.speicher-stepper .pkg-icon svg{
  width:23px; height:23px; fill:none;
  stroke:var(--dark); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;
}
/* Fuellstandsbalken: geschlossene Flaeche statt Kontur */
.speicher-stepper .pkg-icon svg rect.lvl{fill:var(--dark); stroke:none}

/* Badge NEU / BELIEBT: Pille oben rechts auf dem Foto */
.speicher-stepper .pbadge{
  position:absolute; top:12px; right:12px; z-index:2;
  padding:4px 11px; border-radius:99px;
  background:var(--yellow); color:var(--dark);
  font-size:10.5px; font-weight:800; letter-spacing:.02em; line-height:1.5;
  box-shadow:var(--sh-sm);
}

.speicher-stepper .pkg-info{
  padding:32px 16px 18px; display:flex; flex-direction:column; flex:1; text-align:center;
}
.speicher-stepper .pname{font-size:14px; font-weight:800; color:var(--ink)}
.speicher-stepper .pcap{font-size:26px; font-weight:800; margin-top:2px; color:var(--ink); letter-spacing:-.02em; line-height:1.05}
.speicher-stepper .pcap small{font-size:13px; font-weight:600; color:var(--ink-3)}
.speicher-stepper .puse{margin-top:8px; font-size:12.5px; font-weight:700; color:var(--blue-ink); line-height:1.35; flex:1}
.speicher-stepper .pprice{margin-top:12px; font-size:18px; font-weight:800; color:var(--ink)}
.speicher-stepper .pprice-note{margin-top:2px; font-size:11.5px; font-weight:600; color:var(--ink-3)}

/* Toggles: Hinweis unter der Beschreibung + saubere Mobil-Stapelung */
.speicher-stepper .stp-toggle-main{flex:1;min-width:0}
.speicher-stepper .stp-toggle-note{display:block;margin-top:3px;font-size:12.5px;font-weight:600;color:var(--ink-3)}
@media(max-width:600px){
  .speicher-stepper .stp-toggle{flex-direction:column;align-items:stretch;gap:10px}
  .speicher-stepper .stp-seg{width:100%}
  .speicher-stepper .stp-seg button{flex:1;text-align:center}
}


/* ===== Desktop: mehr Breite, groessere Paketkarten =====
   Ab 1000px stehen alle vier Pakete nebeneinander, die Karten werden
   hochkant (Batterie oben, Text darunter) und deutlich groesser.
   Darunter bleibt es bei zwei bzw. einer Spalte. */
@media(min-width:1000px){
  .speicher-stepper .stp-head{padding:26px 32px 20px}
  .speicher-stepper .stp-body{padding:26px 32px}
  .speicher-stepper .stp-footer{padding:20px 32px 24px}
  .speicher-stepper .stp-title{font-size:25px}


  .speicher-stepper .stp-summary td{padding:14px 18px}
  .speicher-stepper .stp-summary td.stp-sum-note{padding:15px 18px; font-size:13.5px}
}

/* ===== Mobil: hoehere Paketkarten mit groesserer Batterie =====
   Einspaltig ist Platz da, deshalb Batterie deutlich groesser und
   vertikal zum Text zentriert. Gibt den Karten sichtbar Hoehe. */


/* Nach dem Absenden: Fusszeile samt Trennlinie und Zurueck-Button ausblenden,
   dort gibt es nichts mehr zu navigieren. */
/* Abschlussseite: kein Fortschritt, keine Navigation. */
.speicher-stepper.stp-erfolg .stp-progress{display:none}
.speicher-stepper.stp-erfolg .stp-footer{display:none}
.speicher-stepper.stp-erfolg .stp-body{padding-bottom:30px}
.speicher-stepper.stp-erfolg .stp-head{display:none}
.speicher-stepper .stp-success{text-align:center; padding:6px 0 2px}
.speicher-stepper .stp-success-title{
  margin:0 0 10px; font-size:24px; font-weight:800; line-height:1.25;
  letter-spacing:-.02em; color:var(--ink);
}
@container stepper (min-width:600px){
  .speicher-stepper .stp-success-title{font-size:29px}
}
.speicher-stepper .stp-success-recap{
  margin:0 auto; max-width:60ch; font-size:12.5px; line-height:1.55; color:var(--ink-3);
}

/* Kartentypografie nach verfuegbarer Modulbreite */
@container stepper (min-width:460px){
  .speicher-stepper .pkg-info{padding:34px 18px 20px}
  .speicher-stepper .pcap{font-size:27px}
  .speicher-stepper .pprice{font-size:18px}
}
@container stepper (min-width:840px){
  .speicher-stepper .pcap{font-size:28px}
  .speicher-stepper .pprice{font-size:19px}
  .speicher-stepper .pbadge{font-size:11px; padding:4px 12px}
}

/* ===== Hilfsklasse: war bisher benutzt, aber nie definiert ===== */
.speicher-stepper .stp-hidden{display:none !important}

/* ===== Sperre: kein Weiter ausserhalb Tirols ===== */
.speicher-stepper .stp-block a{color:#a4271b; text-decoration:underline}
/* Ein einziges Flex-Kind (der span). Mehrere Textknoten wuerden sonst zu
   eigenen Flex-Elementen und bekaemen den gap als Abstand - so entstand
   die Luecke vor dem Punkt hinter der Mailadresse. */
.speicher-stepper .stp-block{
  flex:1; display:flex; align-items:center;
  background:#fdecea; border:1px solid #f3c2bd; border-radius:12px;
  padding:13px 16px; color:#a4271b; font-size:14px; font-weight:700; line-height:1.45;
}

/* ===== Startseite: Illustration links, Einstieg rechts =====
   Auf der Startseite entfallen Kopfzeile, Fortschritt und Fusszeile. Der
   Body verliert seinen Innenabstand, damit die Illustrationsflaeche bis an
   die Kartenkante laeuft. */
.speicher-stepper.stp-start .stp-head{display:none}
.speicher-stepper.stp-start .stp-footer{display:none}
.speicher-stepper.stp-start .stp-body{padding:0}

.speicher-stepper .stp-hero{display:grid; grid-template-columns:1fr}
.speicher-stepper .stp-hero-media{
  position:relative; background:#eef0f3; overflow:hidden; min-height:220px;
}
/* Bildhinweis als Teil der Oberflaeche, nicht als Teil der Bilddatei. */
.speicher-stepper .stp-hero-tag{
  position:absolute; left:14px; bottom:14px; z-index:2;
  background:rgba(255,255,255,.88); color:var(--ink-2);
  font-size:11.5px; font-weight:600; letter-spacing:.01em;
  padding:5px 10px; border-radius:99px; border:1px solid rgba(34,35,38,.08);
}
@container stepper (min-width:600px){
  .speicher-stepper .stp-hero-tag{left:18px; bottom:18px}
}

/* Das Bild fuellt die Flaeche randlos aus, damit kein leeres Grau bleibt. */
.speicher-stepper .stp-hero-art{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center; display:block;
}

.speicher-stepper .stp-hero-body{padding:26px 24px 30px}
.speicher-stepper .stp-hero-title{
  margin:0 0 18px; font-size:24px; font-weight:800; line-height:1.2;
  letter-spacing:-.02em; color:var(--ink);
}
.speicher-stepper .stp-hero-list{list-style:none; margin:0 0 24px; padding:0; display:grid; gap:10px}
.speicher-stepper .stp-hero-list li{
  position:relative; padding-left:28px; font-size:14.5px; line-height:1.5; color:var(--ink-2);
}
.speicher-stepper .stp-hero-list li::before{
  content:''; position:absolute; left:0; top:3px; width:18px; height:18px;
  border-radius:50%; background:var(--green-bg);
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8a52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size:12px 12px; background-position:center; background-repeat:no-repeat;
}
.speicher-stepper .stp-hero-cta{width:100%; flex:0 0 auto; align-self:stretch}

@container stepper (min-width:600px){
  .speicher-stepper .stp-hero{grid-template-columns:0.82fr 1.18fr; align-items:stretch}
  .speicher-stepper .stp-hero-media{min-height:360px}
    .speicher-stepper .stp-hero-body{
    padding:34px 34px 34px 44px; display:flex; flex-direction:column; justify-content:center;
  }
  .speicher-stepper .stp-hero-title{font-size:29px; margin-bottom:22px}
  .speicher-stepper .stp-hero-cta{width:auto; flex:0 0 auto; align-self:flex-start; min-width:230px}
}
@container stepper (min-width:900px){
  .speicher-stepper .stp-hero-media{min-height:400px}
  .speicher-stepper .stp-hero-title{font-size:33px}
}

/* ===== Terminbuchung nach dem Absenden ===== */
.speicher-stepper .stp-meetings{
  margin-top:24px; padding-top:24px; border-top:1px solid var(--line2);
}
.speicher-stepper .stp-meetings-head{
  margin:0 auto 16px; max-width:52ch;
  font-size:16px; line-height:1.6; color:var(--ink-2); text-align:center;
}
.speicher-stepper .meetings-iframe-container{min-height:560px}
.speicher-stepper .meetings-iframe-container iframe{
  width:100%!important; min-height:560px; border:0; display:block;
}
@container stepper (min-width:600px){
  .speicher-stepper .meetings-iframe-container,
  .speicher-stepper .meetings-iframe-container iframe{min-height:660px}
}

/* ===== Anfrageformular in Schritt 4 ===== */
.speicher-stepper .stp-nf{display:grid; gap:14px}
.speicher-stepper .stp-nf-row{display:grid; gap:14px; grid-template-columns:1fr}
@container stepper (min-width:460px){
  .speicher-stepper .stp-nf-row{grid-template-columns:1fr 1fr}
}
.speicher-stepper .stp-nf-field label{
  display:block; font-size:14.5px; font-weight:700; color:var(--ink-2); margin-bottom:8px;
}
.speicher-stepper .stp-nf-opt{font-weight:600; font-size:12.5px; color:var(--ink-3)}
.speicher-stepper .stp-nf-hint{font-size:12.5px; color:var(--ink-3); line-height:1.5; margin-top:6px}
.speicher-stepper .stp-nf-legal{font-size:12.5px; color:var(--ink-3); line-height:1.55}
.speicher-stepper .stp-nf-legal a{color:var(--blue-ink)}
.speicher-stepper .stp-nf-err{display:none; color:#c0392b; font-size:12.5px; font-weight:600}
.speicher-stepper .stp-nf-send{width:100%; flex:0 0 auto; margin-top:2px}

/* ===== Eingabefelder deutlicher abgrenzen =====
   Vorher: sehr helle Flaeche auf weisser Karte mit hellgrauem Rand - die
   Felder verschwanden im Hintergrund. Jetzt weisse Flaeche, klar sichtbarer
   Rand, leichter Innenschatten als Tiefenhinweis. */
.speicher-stepper .stp-form input[type=email],
.speicher-stepper .stp-form input[type=text],
.speicher-stepper .stp-form input[type=tel]{
  background:#fff;
  border:1.5px solid #c9d0da;
  box-shadow:inset 0 1px 2px rgba(34,35,38,.05);
  padding:15px 16px;
}
.speicher-stepper .stp-form input[type=email]:hover,
.speicher-stepper .stp-form input[type=text]:hover,
.speicher-stepper .stp-form input[type=tel]:hover{border-color:#a9b2c0}
.speicher-stepper .stp-form input::placeholder{color:#9aa3b0; opacity:1}
.speicher-stepper .stp-nf-field label{color:var(--ink)}
