/* ═══════════════════════════════════════════════════════════
   VersicherCheck.ch — Main Theme Stylesheet v1.0
   Converted from ver1/style.css — WP theme ready
   Pure CSS · Flexbox + Grid · No Bootstrap
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
    --navy:      #092b63;
    --navy-lt:   #0d3a82;
    --blue:      #0878c0;
    --blue-lt:   #e8f4fd;
    --blue-mid:  #bdddf5;
    --red:       #a11116;
    --gray:      #91999f;
    --text:      #0d1f3c;
    --text-2:    #3d4f6a;
    --text-3:    #91999f;
    --bg:        #ffffff;
    --bg-soft:   #f4f7fb;
    --bg-mid:    #e8eef6;
    --border:    #d0d9e8;
    --border-lt: #dde5f0;
    --yellow:    #f5a623;
    --green-ok:  #1a9e3f;
    --shadow-xs: 0 1px 3px rgba(9,43,99,.06);
    --shadow-sm: 0 2px 8px rgba(9,43,99,.08);
    --shadow-md: 0 6px 24px rgba(9,43,99,.11);
    --shadow-lg: 0 16px 48px rgba(9,43,99,.15);
    --shadow-xl: 0 24px 64px rgba(9,43,99,.20);
    --r-xs:  4px;
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  24px;
    --font:  'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease:  cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font); }
button { cursor: pointer; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-label i { font-size: .75rem; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientPan {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes shimmerBtn {
    from { left: -75%; }
    to   { left: 125%; }
}
@keyframes rippleOut {
    from { transform: scale(0); opacity: .45; }
    to   { transform: scale(3.5); opacity: 0; }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(8,120,192,.5); }
    50%       { box-shadow: 0 0 0 10px rgba(8,120,192,0); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* ── RIPPLE ──────────────────────────────────────────────── */
.ripple {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transform: scale(0);
    animation: rippleOut .6s linear forwards;
    pointer-events: none;
    margin: -5px 0 0 -5px;
}

/* ════════════════════════════════════════════════════════
   UTILITY BAR
════════════════════════════════════════════════════════ */
.ubar {
    background: var(--navy);
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    position: relative;
    z-index: 200;
}
.ubar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 12px;
}
.ubar__left { display: flex; align-items: center; gap: 20px; }
.ubar__left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); transition: color .15s; }
.ubar__left a:hover { color: #fff; }
.ubar__right { display: flex; align-items: center; gap: 16px; }
.ubar__tuv { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.55); }
.ubar__stars { display: flex; align-items: center; gap: 5px; color: var(--yellow); font-size: .75rem; font-weight: 600; }
.ubar__stars strong { color: rgba(255,255,255,.9); }

/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border-lt);
    transition: box-shadow .2s;
}
.hdr--scrolled { box-shadow: var(--shadow-md); }
.hdr__inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__img { height: 60px; width: auto; display: block; object-fit: contain; }
.logo__img--footer { height: 48px; filter: brightness(0) invert(1); opacity: .9; }
.logo--light .logo__word { color: rgba(255,255,255,.75); }

/* WP custom logo integration */
.logo .custom-logo { height: 60px; width: auto; display: block; object-fit: contain; }

/* Main nav */
.mainnav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 28px;
    flex: 1;
}
.mainnav__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
    border-radius: var(--r-md);
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.mainnav__item i { font-size: .8rem; color: var(--text-3); }
.mainnav__item:hover { background: var(--bg-soft); color: var(--navy); }
.mainnav__item:hover i { color: var(--blue); }
.mainnav__item--active { color: var(--blue); }
.mainnav__item--active i { color: var(--blue); }

/* Header actions */
.hdr__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--r-md);
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .18s, transform .18s;
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.2), transparent);
    transform: skewX(-20deg);
    transition: left .5s var(--ease);
}
.btn-cta:hover { background: var(--navy-lt); transform: translateY(-1px); }
.btn-cta:hover::before { left: 125%; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 560px;
    display: flex;
    align-items: stretch;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(9,43,99,.88) 0%, rgba(9,43,99,.72) 45%, rgba(8,120,192,.25) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 72px;
    width: 100%;
}
.hero__copy { flex: 1 1 420px; color: #fff; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 20px;
    animation: fadeUp .5s both;
}
.hero__copy h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeUp .6s .1s both;
}
.hero__accent { color: #5ac8fa; display: block; }
.hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .6s .2s both;
}
.hero__sub i { color: #5ac8fa; }
.hero__pills { display: flex; gap: 8px; flex-wrap: wrap; animation: fadeUp .6s .3s both; }
.hero__pills span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.hero__pills i { font-size: .7rem; }

/* Right form card */
.hero__form-card {
    flex: 0 0 400px;
    max-width: 400px;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: fadeUp .65s .15s both;
}

/* ════════════════════════════════════════════════════════
   HERO FORM (fallback — when lead-engine not active)
════════════════════════════════════════════════════════ */
.hfc__head {
    background: var(--navy);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hfc__head strong { font-size: .95rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex: 1; }
.hfc__head span { font-size: .72rem; color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); padding: 3px 10px; border-radius: 99px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.hfc__form { padding: 24px; }
.hfc__field { margin-bottom: 16px; }
.hfc__field label { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--text-2); margin-bottom: 6px; letter-spacing: .02em; }
.hfc__field label i { color: var(--blue); font-size: .72rem; }
.hfc__field input,
.hfc__field select {
    width: 100%; padding: 13px 14px; border: 2px solid var(--border); border-radius: var(--r-md);
    font-size: .95rem; color: var(--text); background: var(--bg); outline: none;
    transition: border-color .18s, box-shadow .18s; -webkit-appearance: none; appearance: none;
}
.hfc__field input:focus,
.hfc__field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,120,192,.14); }

.btn-hero-submit {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(90deg, var(--blue), #1a9ae0, var(--blue));
    background-size: 200% 100%;
    animation: gradientPan 4s ease infinite;
    color: #fff; border: none; border-radius: var(--r-md);
    font-size: 1.05rem; font-weight: 800; letter-spacing: .01em;
    cursor: pointer; margin-top: 8px; position: relative; overflow: hidden;
    transition: transform .18s, background .18s;
}
.btn-hero-submit:hover { animation: none; background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-hero-submit i { font-size: .95rem; transition: transform .2s; }
.btn-hero-submit:hover i { transform: translateX(4px); }
.hfc__note { text-align: center; font-size: .72rem; color: var(--text-3); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.hfc__note i { color: var(--blue); font-size: .65rem; }

/* ════════════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════════════ */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border-lt); padding: 0; overflow: hidden; }
.trust-strip__inner { display: flex; flex-direction: column; gap: 0; overflow: hidden; }
.trust-strip__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
.trust-strip__label { display: flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; flex-shrink: 0; }
.trust-strip__label i { color: var(--blue); font-size: .68rem; }
.tsig-row { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
.tsig { display: flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; color: var(--text-2); white-space: nowrap; padding: 4px 10px; border-radius: 99px; background: var(--bg-soft); border: 1px solid var(--border-lt); transition: background .18s, border-color .18s; }
.tsig:hover { background: var(--blue-lt); border-color: var(--blue-mid); }
.tsig i { font-size: .65rem; color: var(--green-ok); }
.tsig:nth-child(3) i { color: var(--blue); }
.tsig:nth-child(5) i { color: var(--blue); }
.tsig:nth-child(7) i { color: var(--gray); }
.tsig__sep { width: 1px; height: 14px; background: var(--border-lt); flex-shrink: 0; }
.trust-strip__rating { display: flex; align-items: center; gap: 8px; flex-shrink: 0; border-left: 1px solid var(--border-lt); padding-left: 16px; margin-left: 4px; }
.trating__stars { display: flex; gap: 2px; color: var(--yellow); font-size: .82rem; }
.trust-strip__rating div { display: flex; flex-direction: column; line-height: 1.2; }
.trust-strip__rating strong { font-size: .85rem; font-weight: 800; color: var(--text); }
.trust-strip__rating span { font-size: .68rem; color: var(--text-3); }

/* Marquee */
.tslider { width: 100%; overflow: hidden; border-top: 1px solid var(--border-lt); padding: 14px 0; position: relative; }
.tslider::before, .tslider::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.tslider::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.tslider::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.tslider__track { display: flex; align-items: center; gap: 40px; width: max-content; animation: marquee 22s linear infinite; }
.tslider__track:hover { animation-play-state: paused; }
.tlogo { display: flex; align-items: center; flex-shrink: 0; opacity: .7; transition: opacity .2s, transform .2s; cursor: default; filter: grayscale(20%); }
.tlogo img { display: block; height: 34px; width: auto; object-fit: contain; }
.tlogo:hover { opacity: 1; transform: translateY(-2px); filter: grayscale(0%); }

/* ════════════════════════════════════════════════════════
   RESULTS PREVIEW
════════════════════════════════════════════════════════ */
.results-preview { background: var(--bg-soft); padding: 72px 0 0; border-bottom: 1px solid var(--border-lt); }
.rp__hdr { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.rp__hdr-left h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--text); letter-spacing: -.03em; margin-bottom: 6px; }
.rp__hdr-sub { font-size: .82rem; color: var(--text-3); }
.rp__hdr-sub strong { color: var(--blue); }
.rp__hdr-cta { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--blue-lt); color: var(--blue); border: 1.5px solid var(--blue-mid); border-radius: 99px; font-size: .82rem; font-weight: 700; white-space: nowrap; transition: background .18s, color .18s; flex-shrink: 0; }
.rp__hdr-cta:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.rp__col-hdr { display: grid; grid-template-columns: 44px 100px 1fr 160px 140px 160px; gap: 0 16px; padding: 10px 24px; background: var(--navy); border-radius: var(--r-lg) var(--r-lg) 0 0; font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.rph__rank { text-align: center; }
.rph__preis { text-align: right; }
.rp__cards { display: flex; flex-direction: column; position: relative; border-left: 1px solid var(--border-lt); border-right: 1px solid var(--border-lt); }
.rp__card { background: #fff; border-bottom: 1px solid var(--border-lt); position: relative; transition: background .18s; }
.rp__card:hover { background: #fafcff; }
.rp__card--top { background: linear-gradient(to right, #fffdf0, #fff); border-left: 3px solid var(--yellow); }
.rp__card--top:hover { background: linear-gradient(to right, #fff8e0, #fafcff); }
.rpc__badge-top { position: absolute; top: 0; left: 0; background: var(--yellow); color: #5a3800; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 0 0 var(--r-sm) 0; }
.rp__card-inner { display: grid; grid-template-columns: 44px 100px 1fr 160px 140px 160px; gap: 0 16px; align-items: center; padding: 20px 24px; }
.rpc__rank { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-mid); color: var(--text-3); font-size: .8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; justify-self: center; }
.rpc__rank--gold { background: linear-gradient(135deg, #f6d860, var(--yellow)); color: #5a3800; box-shadow: 0 2px 8px rgba(245,166,35,.4); }
.rpc__logo-wrap img { display: block; height: 38px; width: 100%; max-width: 100px; object-fit: contain; object-position: left center; }
.rpc__info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.rpc__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 6px; }
.rpc__tag { font-size: .68rem; font-weight: 600; padding: 2px 8px; background: var(--bg-mid); color: var(--text-2); border-radius: 99px; border: 1px solid var(--border-lt); }
.rpc__features { display: flex; flex-direction: column; gap: 3px; }
.rpc__features span { display: flex; align-items: center; gap: 5px; font-size: .75rem; color: var(--text-3); }
.rpc__features i { color: var(--green-ok); font-size: .65rem; flex-shrink: 0; }
.rpc__rating { display: flex; flex-direction: column; gap: 4px; }
.rpc__stars { display: flex; gap: 2px; color: var(--yellow); font-size: .78rem; }
.rpc__rating span { font-size: .72rem; color: var(--text-3); }
.rpc__price { text-align: right; }
.rpc__price-main { font-size: 1.55rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.rpc__price-main sup { font-size: .75em; vertical-align: super; font-weight: 700; }
.rpc__price span { font-size: .72rem; color: var(--text-3); display: block; margin-top: 2px; }
.rpc__saving { display: inline-flex; align-items: center; gap: 4px; margin-top: 5px; font-size: .72rem; font-weight: 700; color: var(--green-ok); background: #edfaf3; border: 1px solid #b2e6c8; padding: 2px 8px; border-radius: 99px; }
.rpc__saving i { font-size: .65rem; }
.rpc__action { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.rpc__btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 18px; background: var(--blue); color: #fff; border-radius: var(--r-md); font-size: .82rem; font-weight: 700; white-space: nowrap; transition: background .18s, transform .18s; position: relative; overflow: hidden; }
.rp__card--top .rpc__btn { background: var(--navy); }
.rpc__btn:hover { background: var(--navy); transform: translateY(-1px); }
.rpc__btn i { font-size: .72rem; transition: transform .2s; }
.rpc__btn:hover i { transform: translateX(3px); }
.rpc__sub { font-size: .68rem; color: var(--text-3); text-align: right; }

/* Veil */
.rp__veil { position: relative; margin-top: -180px; z-index: 10; background: linear-gradient(to bottom, transparent 0%, rgba(244,247,251,.82) 28%, rgba(244,247,251,1) 55%); padding-top: 160px; padding-bottom: 52px; text-align: center; border-left: 1px solid var(--border-lt); border-right: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); border-radius: 0 0 var(--r-lg) var(--r-lg); overflow: hidden; }
.rp__veil-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rp__veil-lock { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-3); box-shadow: var(--shadow-sm); margin-bottom: 4px; }
.rp__veil-inner p { font-size: 1rem; font-weight: 700; color: var(--text); }
.rp__veil-inner span { font-size: .82rem; color: var(--text-3); max-width: 320px; line-height: 1.5; }
.btn-unlock { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--blue); color: #fff; border-radius: var(--r-md); font-size: .95rem; font-weight: 800; margin-top: 8px; transition: background .18s, transform .18s, box-shadow .18s; position: relative; overflow: hidden; }
.btn-unlock:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ════════════════════════════════════════════════════════
   BUTTONS — shared
════════════════════════════════════════════════════════ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: var(--blue); color: #fff; border-radius: var(--r-md); font-size: .95rem; font-weight: 700; border: none; cursor: pointer; transition: background .18s, transform .18s, box-shadow .18s; position: relative; overflow: hidden; white-space: nowrap; }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary i { transition: transform .2s; font-size: .85rem; }
.btn-primary:hover i { transform: translateX(4px); }
.btn-primary--lg { padding: 16px 36px; font-size: 1rem; font-weight: 800; }

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.howto { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border-lt); }
.howto__hdr { text-align: center; margin-bottom: 52px; }
.howto__hdr h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--text); letter-spacing: -.03em; margin-bottom: 8px; line-height: 1.15; }
.howto__sub { font-size: .88rem; color: var(--text-3); }
.howto__steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; margin-bottom: 48px; }
.hstep { flex: 1; max-width: 260px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; background: #fff; border-radius: var(--r-xl); border: 1.5px solid var(--border-lt); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; position: relative; }
.hstep:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hstep__icon-wrap { position: relative; margin-bottom: 20px; }
.hstep__icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-lt), #d0ebfa); color: var(--blue); border: 2px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: background .25s, color .25s, transform .25s; }
.hstep:hover .hstep__icon { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; transform: scale(1.08); border-color: var(--blue); }
.hstep__num { position: absolute; bottom: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; font-size: .72rem; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(9,43,99,.3); }
.hstep:hover .hstep__num { background: var(--blue); }
.hstep__body h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.hstep__body p { font-size: .83rem; color: var(--text-3); line-height: 1.6; }
.hstep__arrow { display: flex; align-items: center; padding: 0 8px; padding-top: 36px; color: var(--blue-mid); font-size: 1.2rem; flex-shrink: 0; }
.howto__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.howto__cta-note { font-size: .78rem; color: var(--text-3); display: flex; align-items: center; gap: 5px; }
.howto__cta-note i { color: var(--green-ok); font-size: .72rem; }

/* ════════════════════════════════════════════════════════
   SOCIAL PROOF
════════════════════════════════════════════════════════ */
.social-proof { background: var(--bg-soft); padding: 80px 0; border-bottom: 1px solid var(--border-lt); }
.sp__stats { display: flex; align-items: center; background: var(--navy); border-radius: var(--r-xl); padding: 0; overflow: hidden; margin-bottom: 52px; box-shadow: var(--shadow-lg); }
.sp__stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 28px 20px; text-align: center; transition: background .2s; }
.sp__stat:hover { background: var(--navy-lt); }
.sp__stat strong { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; display: flex; align-items: center; gap: 6px; }
.sp__stat strong i { color: var(--yellow); font-size: 1.2rem; }
.sp__stat span { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; max-width: 120px; line-height: 1.3; }
.sp__stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.sp__stat--stars strong { color: var(--yellow); }
.sp__reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-lt); display: flex; flex-direction: column; gap: 14px; transition: transform .22s var(--ease), box-shadow .22s; position: relative; overflow: hidden; }
.review-card::before { content: '\201C'; position: absolute; top: -8px; right: 16px; font-size: 6rem; line-height: 1; color: var(--blue-lt); font-family: Georgia, serif; pointer-events: none; transition: color .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card:hover::before { color: var(--blue-mid); }
.rc__top { display: flex; align-items: center; gap: 12px; }
.rc__avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.rc__avatar--a { background: linear-gradient(135deg, #092b63, #0878c0); }
.rc__avatar--b { background: linear-gradient(135deg, #a11116, #e24b50); }
.rc__avatar--c { background: linear-gradient(135deg, #0d6e3e, #1a9e3f); }
.rc__meta strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.rc__meta span { font-size: .75rem; color: var(--text-3); }
.rc__stars { display: flex; gap: 2px; color: var(--yellow); font-size: .78rem; }
.ml-auto { margin-left: auto; }
.review-card p { font-size: .88rem; color: var(--text-2); line-height: 1.6; font-style: italic; flex: 1; }
.rc__date { font-size: .72rem; color: var(--text-3); display: flex; align-items: center; gap: 5px; }

/* ════════════════════════════════════════════════════════
   SECOND CTA
════════════════════════════════════════════════════════ */
.second-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%); padding: 72px 0; }
.second-cta__inner { display: flex; align-items: center; gap: 56px; }
.second-cta__copy { flex: 1; }
.second-cta__copy .section-label { color: rgba(255,255,255,.6); }
.second-cta__copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; line-height: 1.15; }
.second-cta__copy p { font-size: .9rem; color: rgba(255,255,255,.55); }
.second-cta__form { flex: 0 0 440px; max-width: 440px; }
.scf__fields { display: flex; gap: 10px; margin-bottom: 12px; }
.scf__input { flex: 1; padding: 14px 16px; border: 2px solid rgba(255,255,255,.15); border-radius: var(--r-md); font-size: .9rem; color: var(--text); background: #fff; outline: none; -webkit-appearance: none; appearance: none; transition: border-color .18s, box-shadow .18s; min-width: 0; }
.scf__input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,120,192,.2); }
.second-cta__form .btn-primary--lg { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════
   RATGEBER ARTICLES
════════════════════════════════════════════════════════ */
.ratgeber { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border-lt); }
.ratgeber__hdr { margin-bottom: 36px; }
.ratgeber__hdr h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.ratgeber__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rg-card { background: var(--bg-soft); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-lt); transition: transform .22s var(--ease), box-shadow .22s; display: flex; flex-direction: column; }
.rg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rg-card__img-link { position: relative; display: block; overflow: hidden; }
.rg-card__img-link img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s var(--ease); }
.rg-card:hover .rg-card__img-link img { transform: scale(1.04); }
.rg-card__cat { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; transition: background .2s; }
.rg-card:hover .rg-card__cat { background: var(--blue); }
.rg-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rg-card__body h3 { font-size: .9rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.rg-card__body h3 a { transition: color .18s; }
.rg-card__body h3 a:hover { color: var(--blue); }
.rg-card__body p { font-size: .82rem; color: var(--text-2); line-height: 1.55; flex: 1; }
.rg-card__meta { display: flex; align-items: center; gap: 10px; font-size: .75rem; color: var(--text-3); margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border-lt); flex-wrap: wrap; }
.rg-card__cta { margin-left: auto; color: var(--blue); font-weight: 700; font-size: .78rem; display: flex; align-items: center; gap: 4px; transition: gap .2s, color .2s; }
.rg-card__cta:hover { color: var(--navy); gap: 8px; }

/* ════════════════════════════════════════════════════════
   PARTNER STRIP
════════════════════════════════════════════════════════ */
.partner-strip { background: var(--navy); padding: 64px 0; overflow: hidden; }
.partner-strip__inner { display: flex; align-items: center; gap: 56px; }
.partner-strip__copy { flex: 0 0 320px; max-width: 320px; }
.partner-strip__label { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 12px; }
.partner-strip__copy h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 10px; }
.partner-strip__copy p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.partner-strip__slider { flex: 1; min-width: 0; overflow: hidden; position: relative; }
.partner-strip__slider::before, .partner-strip__slider::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.partner-strip__slider::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.partner-strip__slider::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.pslider { overflow: hidden; width: 100%; }
.pslider__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee-reverse 26s linear infinite; }
.pslider__track:hover { animation-play-state: paused; }
.plogo { display: flex; align-items: center; flex-shrink: 0; padding: 10px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); transition: background .2s, border-color .2s, transform .2s; cursor: default; }
.plogo img { display: block; height: 30px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .65; transition: opacity .2s; }
.plogo:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.plogo:hover img { opacity: 1; }

/* ════════════════════════════════════════════════════════
   FINAL CTA BANNER
════════════════════════════════════════════════════════ */
.final-cta { position: relative; overflow: hidden; padding: 80px 0; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.final-cta__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(9,43,99,.92) 0%, rgba(8,120,192,.75) 100%); }
.final-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.final-cta__copy h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 10px; }
.final-cta__copy p { font-size: .95rem; color: rgba(255,255,255,.65); }
.final-cta__action { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.final-cta__sub { font-size: .75rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; }
.btn-final { display: inline-flex; align-items: center; gap: 12px; padding: 20px 40px; background: #fff; color: var(--navy); border-radius: var(--r-md); font-size: 1.05rem; font-weight: 800; border: none; cursor: pointer; transition: background .18s, transform .18s, box-shadow .18s; position: relative; overflow: hidden; white-space: nowrap; }
.btn-final:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-final__arrow { transition: transform .2s; }
.btn-final:hover .btn-final__arrow { transform: translateX(5px); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer__top { display: flex; gap: 48px; padding: 56px 0 48px; flex-wrap: wrap; }
.footer__brand { flex: 1 1 220px; max-width: 260px; }
.footer__brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-top: 14px; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: rgba(255,255,255,.55); transition: background .18s, color .18s; }
.footer__social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer__col { flex: 1 1 130px; }
.footer__col h5 { font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer__col li a:hover { color: #fff; }
.footer__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.footer__badges span { display: flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 99px; font-size: .68rem; color: rgba(255,255,255,.35); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .75rem; color: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════════════
   STICKY BOTTOM CTA (mobile)
════════════════════════════════════════════════════════ */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; transform: translateY(100%); transition: transform .3s var(--ease); display: none; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px; background: var(--blue); color: #fff; font-size: 1rem; font-weight: 800; border: none; cursor: pointer; border-top: 3px solid var(--navy); font-family: var(--font); }

/* ════════════════════════════════════════════════════════
   SCROLL-TO-TOP
════════════════════════════════════════════════════════ */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue); color: #fff; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: .9rem; box-shadow: 0 4px 16px rgba(8,120,192,.45); cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s, background .18s; z-index: 999; pointer-events: none; }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--navy); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════
   PAGE / SINGLE / SIDEBAR
════════════════════════════════════════════════════════ */
.page-content { padding: 60px 0; }
.page-wrap { max-width: 820px; }
.page-article__header { margin-bottom: 32px; }
.page-article__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1.15; }
.page-article__body { font-size: 1rem; color: var(--text-2); line-height: 1.7; }
.page-article__body h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 32px 0 12px; }
.page-article__body h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; }
.page-article__body p { margin-bottom: 16px; }
.page-article__body ul, .page-article__body ol { margin: 16px 0 16px 24px; }
.page-article__body li { margin-bottom: 8px; }
.page-article__body a { color: var(--blue); text-decoration: underline; }

/* Ratgeber single */
.ratgeber-single { padding: 48px 0 80px; }
.ratgeber-single__wrap { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.article-header__cat { display: inline-block; background: var(--navy); color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; }
.article-header__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 16px; }
.article-header__meta { display: flex; align-items: center; gap: 16px; font-size: .82rem; color: var(--text-3); margin-bottom: 24px; }
.article-header__thumb { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; }
.article-header__thumb img { width: 100%; height: 400px; object-fit: cover; }
.article-cta-box { background: var(--blue-lt); border: 1.5px solid var(--blue-mid); border-radius: var(--r-lg); padding: 24px; margin-bottom: 32px; }
.article-cta-box p { font-size: .9rem; color: var(--navy); font-weight: 600; margin-bottom: 16px; }
.article-content { font-size: 1rem; color: var(--text-2); line-height: 1.75; }
.article-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 36px 0 14px; }
.article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.article-content p { margin-bottom: 18px; }
.article-content a { color: var(--blue); text-decoration: underline; }
.article-bottom-cta { background: linear-gradient(135deg, var(--navy), var(--navy-lt)); border-radius: var(--r-xl); padding: 40px; margin-top: 48px; }
.article-bottom-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.article-bottom-cta__copy h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.article-bottom-cta__copy p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* Sidebar */
.sidebar-sticky { position: sticky; top: 80px; }
.sidebar-widget { background: #fff; border: 1.5px solid var(--border-lt); border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-widget--form { background: var(--blue-lt); border-color: var(--blue-mid); }
.sidebar-widget__label { font-size: .78rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.sidebar-widget__title { font-size: .9rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.sidebar-related { display: flex; flex-direction: column; gap: 10px; }
.sidebar-related a { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: .82rem; color: var(--text-2); font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--border-lt); transition: color .15s; }
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a:hover { color: var(--blue); }
.sidebar-related a i { font-size: .72rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1050px) {
    .hero__form-card { flex: 0 0 360px; max-width: 360px; }
    .sp__reviews { grid-template-columns: 1fr 1fr; }
    .sp__reviews .review-card:last-child { display: none; }
    .second-cta__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
    .second-cta__form { max-width: 100%; flex: 1 1 100%; }
    .ratgeber__grid { grid-template-columns: repeat(2, 1fr); }
    .rp__col-hdr { grid-template-columns: 40px 90px 1fr 130px 150px; }
    .rp__col-hdr .rph__features { display: none; }
    .rp__card-inner { grid-template-columns: 40px 90px 1fr 130px 150px; }
    .rpc__features { display: none; }
    .ratgeber-single__wrap { grid-template-columns: 1fr; }
    .ratgeber-single__sidebar { display: none; }
}

@media (max-width: 860px) {
    .mainnav { display: none; }
    .mainnav.open { display: flex; position: fixed; top: 100px; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border-lt); flex-direction: column; padding: 8px 0; box-shadow: var(--shadow-lg); z-index: 300; }
    .mainnav.open .mainnav__item { padding: 14px 24px; border-bottom: none; }
    .burger { display: flex; }
    .btn-cta span { display: none; }
    .hero { min-height: unset; }
    .hero__inner { flex-direction: column; gap: 32px; padding-top: 48px; padding-bottom: 0; }
    .hero__copy { padding-bottom: 0; }
    .hero__form-card { flex: 1 1 100%; max-width: 100%; border-radius: var(--r-xl) var(--r-xl) 0 0; }
    .howto__steps { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .hstep { flex: 1 1 200px; max-width: 220px; }
    .hstep__arrow { display: none; }
    .sp__stats { flex-wrap: wrap; }
    .sp__stat-sep { display: none; }
    .sp__stat { flex: 1 1 45%; }
    .sp__reviews { grid-template-columns: 1fr; }
    .sp__reviews .review-card:last-child { display: flex; }
    .sp__reviews .review-card:nth-child(2) { display: none; }
    .ratgeber__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .final-cta__inner { flex-direction: column; text-align: center; align-items: center; }
    .final-cta__action { align-items: center; }
    .sticky-cta { display: block; }
    .scroll-top { bottom: 80px; }
    .trust-strip__meta { padding: 8px 16px; flex-wrap: wrap; gap: 8px; }
    .tsig-row { display: flex; flex: 1 1 100%; gap: 4px; justify-content: flex-start; order: 2; }
    .tsig { font-size: .67rem; padding: 3px 8px; }
    .tsig:nth-child(5), .tsig:nth-child(7), .tsig__sep:nth-child(4), .tsig__sep:nth-child(6) { display: none; }
    .trust-strip__label { order: 1; }
    .trust-strip__rating { display: flex; order: 1; border-left: none; padding-left: 0; margin-left: auto; gap: 5px; align-items: center; }
    .trating__stars { font-size: .75rem; gap: 1px; }
    .trust-strip__rating strong { font-size: .8rem; }
    .trust-strip__rating span { display: none; }
    .tslider__track { gap: 28px; animation-duration: 18s; }
    .tlogo img { height: 26px; }
    .footer__top { gap: 28px; flex-wrap: wrap; }
    .footer__brand { max-width: 100%; flex: 1 1 100%; }
    .partner-strip__inner { flex-direction: column; gap: 32px; align-items: flex-start; }
    .partner-strip__copy { flex: none; max-width: 100%; }
    .partner-strip__slider { width: 100%; }
    .plogo img { height: 24px; }
    .rp__col-hdr { display: none; }
    .rp__card-inner { display: flex; flex-wrap: wrap; gap: 12px; padding: 16px; }
    .rpc__rank, .rpc__logo-wrap { flex-shrink: 0; }
    .rpc__logo-wrap img { height: 30px; max-width: 80px; }
    .rpc__info { flex: 1 1 200px; min-width: 0; }
    .rpc__price { flex: 1 1 auto; text-align: left; }
    .rpc__action { flex: 1 1 100%; align-items: stretch; }
    .rpc__btn { justify-content: center; width: 100%; padding: 13px; }
    .rpc__sub { text-align: center; }
    .rp__veil { margin-top: -120px; padding-top: 100px; }
}

@media (max-width: 600px) {
    .ubar__left a:last-child { display: none; }
    .ubar__right .ubar__tuv { display: none; }
    .hero__form-card { border-radius: var(--r-lg); margin: 0 0 -2px; }
    .hfc__head { padding: 14px 18px; }
    .hfc__head strong { font-size: .88rem; }
    .hfc__form { padding: 18px; }
    .hfc__field { margin-bottom: 12px; }
    .hfc__field input, .hfc__field select { padding: 12px 13px; font-size: .9rem; }
    .btn-hero-submit { padding: 15px; font-size: .92rem; }
    .hero__copy { padding-bottom: 16px; }
    .hero__copy h1 { font-size: 1.75rem; margin-bottom: 14px; }
    .hero__sub { font-size: .85rem; margin-bottom: 18px; }
    .hero__pills { gap: 6px; }
    .hero__pills span { font-size: .7rem; padding: 4px 10px; }
    .sp__stat { flex: 1 1 100%; }
    .ratgeber__grid { grid-template-columns: 1fr; }
    .howto__steps { flex-direction: column; align-items: center; }
    .hstep { width: 100%; max-width: 100%; flex: none; }
    .partner-strip { padding: 48px 0; }
    .scf__fields { flex-direction: column; }
    .btn-final { padding: 16px 24px; font-size: .92rem; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
    .article-bottom-cta { padding: 28px 20px; }
    .article-bottom-cta__inner { flex-direction: column; text-align: center; }
}

/* ── FOCUS & SELECTION ───────────────────────────────── */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: var(--r-xs); }
::selection { background: var(--blue-mid); color: var(--text); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
