/*
 * simova.ir -- warme Fintech-Handschrift.
 *
 * Grundsatz: Farbe traegt die Seite, nicht die Linie. Jeder Abschnitt ist
 * ein grosser runder Block in einer eigenen Farbe; Knoepfe sind Pillen;
 * duenne Rahmen kommen fast nicht vor. Kein Grau -- selbst die stillen
 * Toene liegen im Warmen. Genau eine Bewegung auf der Seite.
 */

/* Sahel: derselbe Gestalter wie Vazirmatn, bereits selbst gehostet.
   Drei echte Schnitte -- 400 fuer Fliesstext, 700 fuer Auszeichnung,
   900 fuer die grossen Zeilen. */
@font-face {
    font-family: 'Sahel';
    src: url('/assets/schrift/Sahel.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Sahel';
    src: url('/assets/schrift/Sahel-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Sahel';
    src: url('/assets/schrift/Sahel-Black.woff2') format('woff2');
    font-weight: 900; font-style: normal; font-display: swap;
}

:root {
    --creme: #FFF7EE;
    --tinte: #14211C;
    --tinte-weich: #5A6A61;
    --safran: #FFC24D;
    --safran-hell: #FFD584;
    --koralle: #FF6B4A;
    --koralle-dunkel: #E24E2E;
    --sand: #F3E4D2;
    --pfirsich: #FFE0B8;
    --minze: #D8F3E0;

    --r-gross: clamp(26px, 2.8vw, 40px);
    --r-mittel: clamp(22px, 2.1vw, 30px);
    --r-klein: 22px;
    --r-pille: 999px;

    --breite: 1360px;
    --rand: clamp(16px, 3.4vw, 60px);
    --block-rand: clamp(12px, 1.7vw, 24px);
    --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: 'Sahel', Tahoma, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    background: var(--creme);
    color: var(--tinte);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--koralle-dunkel); text-decoration: none; }
a:hover { color: var(--tinte); }

:focus-visible { outline: 3px solid var(--koralle); outline-offset: 3px; border-radius: 6px; }

.zahl, .mono, time { font-variant-numeric: tabular-nums; }
/* Vorwahlen und Codes bleiben links-nach-rechts, sonst rutscht das Plus
   ans falsche Ende. */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

.zum-inhalt {
    position: absolute; inset-inline-start: -9999px; top: 0; z-index: 999;
    padding: 14px 24px; background: var(--tinte); color: var(--creme);
    border-radius: 0 0 var(--r-klein) 0; font-weight: 700;
}
.zum-inhalt:focus { inset-inline-start: 0; }

.innen { max-width: var(--breite); margin: 0 auto; padding-inline: var(--rand); }
.innen.eng { max-width: 78ch; }

/* ---------- Kopf ---------- */
.kopf { padding: 18px 0; background: var(--creme); }
.kopf-innen {
    display: flex; align-items: center; gap: clamp(12px, 2.2vw, 32px);
    max-width: var(--breite); margin: 0 auto; padding-inline: var(--rand);
}
/* Der Schriftzug steht jetzt in Tinte statt im alten Markenblau -- im
   warmen Umfeld wirkte das Blau wie ein Fremdkoerper. Zurueckdrehen heisst:
   die Fuellfarbe in marke.svg wieder auf #056ee9 setzen. */
.marke { display: inline-flex; }
.marke img { height: 32px; width: auto; }

.haupt-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.haupt-nav a {
    padding: 10px 18px; border-radius: var(--r-pille);
    font-size: 15px; font-weight: 700; color: var(--tinte-weich);
    min-height: 44px; display: inline-flex; align-items: center;
    transition: background .16s ease, color .16s ease;
}
.haupt-nav a.aktiv { background: var(--tinte); color: var(--creme); }
@media (hover: hover) {
    .haupt-nav a:hover:not(.aktiv) { background: var(--sand); color: var(--tinte); }
}

.kopf-aktionen { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }

/* ---------- Knoepfe: immer Pillen ---------- */
.knopf {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 52px; padding: 15px 34px;
    background: var(--tinte); color: var(--creme);
    border: 0; border-radius: var(--r-pille);
    font: inherit; font-weight: 700; font-size: 17px;
    cursor: pointer; text-align: center;
    transition: transform .16s ease, background .16s ease;
}
@media (hover: hover) { .knopf:hover { background: #0B1610; transform: translateY(-2px); } }
.knopf:active { transform: translateY(0); }

.knopf-haupt { background: var(--koralle); color: #fff; }
@media (hover: hover) { .knopf-haupt:hover { background: var(--koralle-dunkel); } }

/* Der Zweitknopf muss sich vom Untergrund abheben, auf dem er steht.
   Als cremefarbene Flaeche war er auf dem Safranblock gut sichtbar und auf
   dem cremefarbenen Seitengrund unsichtbar -- dort traegt ihn jetzt eine
   Kontur. */
.knopf-rand {
    background: transparent; color: var(--tinte);
    border: 2px solid var(--tinte); padding: 13px 32px;
}
@media (hover: hover) { .knopf-rand:hover { background: var(--tinte); color: var(--creme); } }

.held .knopf-rand, .band.dunkel .knopf-rand, .bild-band .knopf-rand {
    background: rgba(255,247,238,.82); border-color: transparent;
    color: var(--tinte); padding: 15px 34px;
}
@media (hover: hover) {
    .held .knopf-rand:hover, .band.dunkel .knopf-rand:hover, .bild-band .knopf-rand:hover {
        background: #fff; color: var(--tinte);
    }
}

.knopf-hell { background: #fff; color: var(--tinte); }
@media (hover: hover) { .knopf-hell:hover { background: var(--sand); } }

/* ---------- Held: der grosse Safranblock ---------- */
.held { padding: 0 var(--block-rand) var(--block-rand); }
.held > .innen {
    background: var(--safran);
    border-radius: var(--r-gross);
    padding: clamp(36px, 5.4vw, 66px) clamp(24px, 4.2vw, 60px);
    max-width: none; position: relative; overflow: hidden;
}
/* Zwei Kreise als Atmosphaere -- billiger als jedes Bild und sie
   verrutschen auf keiner Bildschirmbreite. */
.held > .innen::before,
.held > .innen::after {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.held > .innen::before {
    inset-inline-start: -110px; bottom: -180px;
    width: 420px; height: 420px; background: var(--safran-hell);
}
.held > .innen::after {
    inset-inline-end: 32%; top: -140px;
    width: 300px; height: 300px; background: rgba(255,107,74,.18);
}

.held-raster {
    display: grid; grid-template-columns: 1.08fr .92fr;
    gap: clamp(24px, 3.8vw, 52px); align-items: center;
    position: relative; z-index: 2;
}
.held h1 {
    font-size: clamp(2.5rem, 6.2vw, 5.25rem);
    font-weight: 900; line-height: 1.12; letter-spacing: -.035em;
    margin: 0 0 22px; max-width: 16ch;
}
.held h1 .akzent { color: var(--koralle-dunkel); }
.held-text {
    font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.85;
    color: #2C3A33; max-width: 44ch; margin: 0 0 30px;
}
.held-knoepfe { display: flex; flex-wrap: wrap; gap: 12px; }
.held-marke {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(20,33,28,.10);
    border-radius: var(--r-pille); font-size: 14px; font-weight: 700;
    margin-bottom: 24px;
}
.held-marke::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--tinte);
}
.held-ab { margin-top: 24px; font-size: 16px; font-weight: 700; color: #2C3A33; }

/* Die Karte, auf der der Code ankommt: das Produkt, nicht ein Symbolfoto. */
.code-karte {
    background: var(--creme); border-radius: var(--r-mittel);
    padding: clamp(20px, 2.2vw, 26px);
    box-shadow: 0 30px 64px rgba(20,33,28,.22);
}
/* Ein einmaliger Auftritt, kein Dauerschweben: die Karte kommt an, so wie
   der Code ankommt, und bleibt dann still. Endlose Bewegung zieht den Blick
   pausenlos vom Text weg. */
@keyframes ankommen {
    from { opacity: 0; transform: translateY(22px) scale(.97); }
    to   { opacity: 1; transform: none; }
}
.code-karte { animation: ankommen .62s cubic-bezier(.22,.9,.3,1) both; }
.code-ziffern span {
    animation: ankommen .34s cubic-bezier(.22,.9,.3,1) both;
    animation-delay: calc(.42s + var(--i, 0) * .07s);
}
@media (prefers-reduced-motion: reduce) {
    .code-karte, .code-ziffern span { animation: none; }
}

.code-kopf {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 20px; border-bottom: 1px solid rgba(20,33,28,.10);
}
.code-symbol {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--tinte); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.code-kopf b { font-size: 16px; font-weight: 900; display: block; }
.code-kopf .nummer { font-size: 13px; color: var(--tinte-weich); }
.code-status {
    margin-inline-start: auto; flex-shrink: 0;
    padding: 6px 13px; background: var(--minze);
    border-radius: var(--r-pille); font-size: 12px; font-weight: 700;
}
.code-ziffern { display: flex; gap: 9px; direction: ltr; padding: 20px 0; }
.code-ziffern span {
    flex-grow: 1; min-width: 0; height: 62px;
    background: var(--safran); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: clamp(1.3rem, 2.1vw, 1.75rem); font-weight: 900;
}
.code-ziffern span.spaet { background: var(--koralle); color: #fff; }
.code-dauer {
    display: flex; align-items: center; gap: 10px;
    padding: 15px 18px; background: var(--sand);
    border-radius: 18px; font-size: 14px; font-weight: 700;
}

/* ---------- Vertrauensreihe ---------- */
.vertrauen {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px; padding: 0 var(--block-rand) var(--block-rand);
}
.vertrauen > div {
    display: flex; align-items: center; gap: 14px;
    padding: 24px 30px; background: var(--sand); border-radius: var(--r-mittel);
}
.vertrauen b { font-size: 17px; font-weight: 900; display: block; }
.vertrauen span { font-size: 14px; color: var(--tinte-weich); line-height: 1.7; }
.vertrauen svg { flex-shrink: 0; }

/* ---------- Kennzahlen ---------- */
.kennzahlen {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px; padding: 0 var(--block-rand) var(--block-rand);
}
.kennzahlen div { background: var(--pfirsich); border-radius: var(--r-mittel); padding: clamp(24px, 3vw, 38px); }
.kennzahlen .wert {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 900;
    line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.kennzahlen .bezeichnung { margin-top: 9px; font-size: 15px; font-weight: 700; color: #2C3A33; }

/* ---------- Baender ---------- */
.band { padding: clamp(30px, 4vw, 54px) 0; }
.band.linie { padding-top: 0; }
.band.dunkel, .band.grau {
    margin: 0 var(--block-rand) var(--block-rand);
    border-radius: var(--r-gross);
    padding: clamp(34px, 4.4vw, 56px) 0;
}
.band.dunkel { background: var(--tinte); color: var(--creme); }
.band.grau { background: var(--sand); }
.band.dunkel a { color: var(--safran); }
.band.dunkel a:hover { color: #fff; }

.band-titel {
    font-size: clamp(1.9rem, 3.9vw, 3.1rem); font-weight: 900;
    letter-spacing: -.03em; line-height: 1.18; margin: 0 0 12px;
}
.band.dunkel .band-titel { color: var(--creme); }

h1 { font-size: clamp(2.1rem, 4.8vw, 4rem); font-weight: 900; letter-spacing: -.032em; line-height: 1.16; margin: 0 0 18px; }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.35rem); font-weight: 900; letter-spacing: -.026em; line-height: 1.28; margin: 2.2em 0 .6em; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.32rem); font-weight: 900; line-height: 1.4; margin: 0 0 .5em; }
p { margin: 0 0 1.15em; }
.fuehrung { font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.85; color: #2C3A33; }
.leise { color: var(--tinte-weich); font-size: 14px; }

/* ---------- Angebote ---------- */
.angebot {
    display: grid; grid-template-columns: auto 1fr;
    gap: clamp(16px, 2.4vw, 30px);
    background: var(--creme); border-radius: var(--r-mittel);
    padding: clamp(24px, 3vw, 34px); margin-bottom: 12px;
}
.band.grau .angebot { background: #fff; }
.angebot:last-child { margin-bottom: 0; }
.angebot-nr {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--tinte); color: var(--safran);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 21px; font-weight: 900;
}
.angebot-inhalt h3 { margin: 0 0 9px; font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.angebot-inhalt p { margin: 0 0 14px; color: var(--tinte-weich); line-height: 1.85; }
.angebot-inhalt ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.angebot-inhalt li { font-size: 15px; display: flex; gap: 9px; align-items: baseline; }
.angebot-inhalt li::before { content: '—'; color: var(--koralle); font-weight: 700; }
.angebot .knopf { margin-top: 4px; }

/* ---------- Ablauf ---------- */
.ablauf {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px; margin: 0; padding: 0; list-style: none;
}
.ablauf li { background: var(--sand); border-radius: var(--r-mittel); padding: clamp(24px, 3vw, 32px); }
.ablauf li:nth-child(2) { background: var(--pfirsich); }
.ablauf li:nth-child(3) { background: var(--minze); }
.ablauf .nr {
    width: 48px; height: 48px; margin-bottom: 18px;
    background: var(--tinte); color: var(--safran); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; font-weight: 900;
}
.ablauf h3 { font-size: clamp(1.15rem, 1.7vw, 1.32rem); margin: 0 0 9px; }
.ablauf p { margin: 0; font-size: 16px; line-height: 1.85; color: var(--tinte-weich); }

/* ---------- Preise ---------- */
.preis-zeile {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,247,238,.07); border-radius: var(--r-klein);
    padding: 18px 22px; margin-bottom: 8px;
}
.band.grau .preis-zeile, body > .preis-zeile { background: #fff; }
.preis-zeile:last-of-type { margin-bottom: 0; }
.preis-zeile .dienst { font-size: 16px; font-weight: 700; }
.preis-zeile .wert {
    margin-inline-start: auto; font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 900; color: var(--safran); font-variant-numeric: tabular-nums;
}
.band.grau .preis-zeile .wert { color: var(--koralle-dunkel); }
.preis-zeile .einheit { font-size: 13px; color: rgba(255,247,238,.55); }
.band.grau .preis-zeile .einheit { color: var(--tinte-weich); }
.preis-fuss { margin-top: 18px; font-size: 14px; color: rgba(255,247,238,.62); }
.band.grau .preis-fuss { color: var(--tinte-weich); }

/* Laenderkuerzel als Chip statt Flaggenbild: laedt nichts nach. */
.kuerzel {
    width: 36px; height: 25px; flex-shrink: 0;
    background: var(--koralle); color: #fff; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 900; letter-spacing: .05em; direction: ltr;
}

/* ---------- Fragen ---------- */
.fragen details {
    background: var(--sand); border-radius: var(--r-klein);
    padding: 4px 24px; margin-bottom: 8px;
}
.fragen details:last-child { margin-bottom: 0; }
.fragen summary {
    cursor: pointer; list-style: none;
    padding: 20px 0; min-height: 44px;
    font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 900;
    display: flex; align-items: center; gap: 14px;
}
.fragen summary::-webkit-details-marker { display: none; }
.fragen summary::after {
    content: '+'; margin-inline-start: auto; flex-shrink: 0;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--tinte); color: var(--safran);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; transition: transform .2s ease;
}
.fragen details[open] summary::after { transform: rotate(45deg); }
.fragen p { margin: 0 0 20px; color: var(--tinte-weich); line-height: 1.9; }

/* ---------- Abschluss ---------- */
.abschluss {
    margin: 0 var(--block-rand) var(--block-rand);
    background: var(--safran); border-radius: var(--r-gross);
    padding: clamp(40px, 5.6vw, 70px) var(--rand); text-align: center;
}
.abschluss h2 {
    font-size: clamp(1.9rem, 4.4vw, 3.4rem); font-weight: 900;
    letter-spacing: -.035em; line-height: 1.16; margin: 0 0 14px;
}
.abschluss p { font-size: clamp(1rem, 1.35vw, 1.2rem); color: #2C3A33; margin: 0 0 28px; }
.mitte-band { text-align: center; }
.mitte-knoepfe { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.riesen-zahl {
    font-size: clamp(3rem, 9vw, 7rem); font-weight: 900;
    letter-spacing: -.04em; line-height: 1; color: var(--koralle);
}

/* ---------- Brotkrumen ---------- */
.brotkrumen {
    font-size: 14px; color: var(--tinte-weich);
    margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap;
}
.brotkrumen a { color: var(--tinte-weich); font-weight: 700; }

/* ---------- Blog ---------- */
.artikel-liste { display: flex; flex-direction: column; gap: 12px; }
.artikel-zeile {
    display: grid; grid-template-columns: minmax(0, 300px) 1fr;
    gap: clamp(18px, 2.6vw, 32px); align-items: center;
    background: var(--sand); border-radius: var(--r-mittel);
    padding: clamp(16px, 2vw, 22px);
}
.artikel-zeile img { border-radius: var(--r-klein); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.artikel-zeile h2 { margin: 0 0 8px; font-size: clamp(1.2rem, 2.1vw, 1.6rem); }
.artikel-zeile p { margin: 0 0 12px; color: var(--tinte-weich); font-size: 16px; }
.artikel-datum { font-size: 13px; color: var(--tinte-weich); font-weight: 700; }
.weiterlesen { font-weight: 900; color: var(--koralle-dunkel); }

.beitrag-bild { border-radius: var(--r-gross); overflow: hidden; margin-bottom: 34px; }
.beitrag-bild img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.beitrag p { font-size: 17px; line-height: 1.95; }
.beitrag h2 { margin-top: 2em; }
.beitrag-abschluss {
    background: var(--tinte); color: var(--creme);
    border-radius: var(--r-gross); padding: clamp(30px, 4vw, 46px); margin-top: 44px;
}
.beitrag-abschluss h2 { margin-top: 0; color: var(--creme); }

.verwandt { margin-top: 44px; }
.verwandt ul, .verwandt-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.verwandt li, .verwandt-liste li { margin: 0; }
.verwandt a, .verwandt-liste a {
    display: flex; align-items: center; min-height: 52px;
    padding: 14px 22px; background: var(--sand);
    border-radius: var(--r-klein); font-weight: 700; color: var(--tinte);
    transition: background .16s ease;
}
@media (hover: hover) { .verwandt a:hover, .verwandt-liste a:hover { background: var(--pfirsich); } }

/* ---------- Formular ---------- */
.kontakt-raster { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 3.6vw, 48px); align-items: start; }
.feld { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
label { font-size: 15px; font-weight: 700; }
input, textarea {
    font: inherit; font-size: 16px; min-height: 52px;
    padding: 14px 20px; background: #fff;
    border: 2px solid transparent; border-radius: var(--r-klein);
    color: var(--tinte); width: 100%;
}
.band.grau input, .band.grau textarea { background: var(--creme); }
textarea { min-height: 150px; resize: vertical; line-height: 1.8; }
input:focus, textarea:focus { outline: 0; border-color: var(--koralle); }
.honigtopf { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; }

.meldung {
    display: none; padding: 16px 22px; border-radius: var(--r-klein);
    font-weight: 700; margin-bottom: 16px;
}
.meldung.sichtbar { display: block; }
.meldung.gut { background: var(--minze); color: #12432A; }
.meldung.fehler { background: #FFDDD4; color: #8C2A12; }

.kontakt-block { background: var(--sand); border-radius: var(--r-mittel); padding: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.kontakt-block h2 { margin: 0 0 10px; font-size: 1.25rem; }
.kontakt-block p { margin: 0; color: var(--tinte-weich); font-size: 16px; }
.telefon, .fuss-telefon a { font-weight: 900; font-size: 1.15rem; direction: ltr; unicode-bidi: isolate; display: inline-block; }

.rechtstext p { line-height: 1.95; }
.rechtstext h2 { margin-top: 2em; }

/* ---------- Untermenue ---------- */
.nav-gruppe { position: relative; }

/* Oeffnet bei Zeigergeraeten durch Ueberfahren, bei Tastatur durch Fokus.
   Ohne das Ausblenden stehen beide Klappmenues dauerhaft offen und
   sprengen den Kopf -- genau das war beim Umbau passiert. */
.untermenue {
    position: absolute; top: calc(100% + 8px); inset-inline-start: 0; z-index: 40;
    min-width: 380px;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px;
    background: var(--creme); border-radius: var(--r-mittel);
    padding: 12px; box-shadow: 0 22px 54px rgba(20,33,28,.18);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
@media (hover: hover) {
    .nav-gruppe:hover .untermenue { opacity: 1; visibility: visible; transform: none; }
}
.nav-gruppe:focus-within .untermenue { opacity: 1; visibility: visible; transform: none; }
.untermenue a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 14px;
    font-size: 14px; font-weight: 700; color: var(--tinte); min-height: 44px;
}
.untermenue a img { width: 22px; height: 22px; flex-shrink: 0; }
.untermenue a b { margin-inline-start: auto; font-size: 13px; color: var(--tinte-weich); font-weight: 700; }
@media (hover: hover) { .untermenue a:hover { background: var(--sand); } }
/* Die Uebersichtszeile laeuft ueber beide Spalten, damit sie als Abschluss
   gelesen wird und nicht als weiterer Eintrag. */
.untermenue-alle {
    grid-column: 1 / -1; justify-content: center;
    margin-top: 4px; border-top: 1px solid rgba(20,33,28,.10);
    font-weight: 900; color: var(--koralle-dunkel) !important;
}

/* ---------- Kacheln ---------- */
.kachel-gitter { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.kachel-gitter.gross { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.kachel {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 22px 16px; background: var(--sand);
    border-radius: var(--r-klein); text-align: center;
    min-height: 44px; color: var(--tinte);
    transition: background .16s ease, transform .16s ease;
}
.band.grau .kachel, .band.dunkel .kachel { background: #fff; }
.band.dunkel .kachel { color: var(--tinte); }
.kachel img { height: 34px; width: auto; }
.kachel b { font-size: 15px; font-weight: 900; }
.kachel .preis { font-size: 14px; font-weight: 900; color: var(--koralle-dunkel); }
@media (hover: hover) { .kachel:hover { background: var(--pfirsich); transform: translateY(-3px); } }

.dienst-kopf { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.dienst-kopf h1 { margin: 0; }
.dienst-logo, .land-flagge { width: 64px; height: 64px; flex-shrink: 0; border-radius: 18px; }
.land-flagge { object-fit: cover; }
.vorwahl-gross {
    font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
    direction: ltr; unicode-bidi: isolate; display: inline-block; color: var(--koralle);
}

/* ---------- Faelle und Bildband ---------- */
.faelle { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.fall { background: var(--sand); border-radius: var(--r-mittel); overflow: hidden; }
.fall img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.fall h3 { margin: 20px 24px 8px; }
.fall p { margin: 0 24px 24px; color: var(--tinte-weich); font-size: 16px; }

.bild-band {
    position: relative; margin: 0 var(--block-rand) var(--block-rand);
    border-radius: var(--r-gross); overflow: hidden;
}
.bild-band img { width: 100%; height: clamp(340px, 44vw, 540px); object-fit: cover; }
.bild-band::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to left, rgba(20,33,28,.90) 0%, rgba(20,33,28,.66) 44%, rgba(20,33,28,.06) 80%);
}
.bild-band-text {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    max-width: var(--breite); margin: 0 auto;
    padding-inline: clamp(24px, 4.2vw, 60px); color: var(--creme);
}
.bild-band-text h2 { margin: 0 0 14px; color: var(--creme); }
.bild-band-text p { max-width: 44ch; color: rgba(255,247,238,.86); }

/* ---------- Fuss ---------- */
.fuss {
    margin: 0 var(--block-rand) var(--block-rand);
    background: var(--tinte); color: var(--creme);
    border-radius: var(--r-gross); padding: clamp(36px, 4.6vw, 58px) 0 0;
}
.fuss-innen {
    display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 44px);
    max-width: var(--breite); margin: 0 auto; padding-inline: clamp(24px, 4.2vw, 60px);
}
.fuss-marke { height: 28px; width: auto; margin-bottom: 14px; }
.fuss h2 { font-size: 15px; font-weight: 900; color: var(--safran); margin: 0 0 14px; letter-spacing: 0; }
.fuss p { color: rgba(255,247,238,.68); font-size: 15px; line-height: 1.85; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.fuss li { margin: 0; }
.fuss a { color: rgba(255,247,238,.82); font-size: 15px; display: inline-flex; align-items: center; min-height: 40px; }
@media (hover: hover) { .fuss a:hover { color: var(--safran); } }
.fuss .leise { color: rgba(255,247,238,.5); }
.fuss-telefon a { color: var(--safran); }
.fuss-unten { margin-top: 40px; border-top: 1px solid rgba(255,247,238,.14); }
.fuss-unten-innen {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
    max-width: var(--breite); margin: 0 auto;
    padding: 22px clamp(24px, 4.2vw, 60px);
}
.fuss-unten-innen p { margin: 0; font-size: 14px; }
.fuss-zahlung { margin-inline-start: auto; display: flex; gap: 10px; align-items: center; }

/* ---------- Schmale Geraete ---------- */
@media (max-width: 980px) {
    .held-raster, .kontakt-raster { grid-template-columns: 1fr; }
    .vertrauen, .kennzahlen, .ablauf, .faelle { grid-template-columns: 1fr; }
    .fuss-innen { grid-template-columns: 1fr 1fr; }
    .artikel-zeile { grid-template-columns: 1fr; }
    .bild-band::after {
        background: linear-gradient(to top, rgba(20,33,28,.94) 32%, rgba(20,33,28,.42) 100%);
    }
}
@media (max-width: 980px) {
    /* Kein Aufklappen auf schmalen Geraeten: der Hauptpunkt fuehrt zur
       Uebersichtsseite, dort steht dasselbe als vollwertige Seite. */
    .untermenue { display: none; }
}
@media (max-width: 680px) {
    body { font-size: 16px; }
    .haupt-nav { display: none; }
    .held-knoepfe .knopf, .mitte-knoepfe .knopf { width: 100%; }
    .fuss-innen { grid-template-columns: 1fr; }
    .angebot { grid-template-columns: 1fr; }
    .code-ziffern span { height: 54px; }
}
