/* ============================================================
   Phone Empire · Zubehör & Reparatur
   Markenfarben aus dem Logo: Rot #D00010, Grün #108030
   Entwurf: revota (revota.de)
   ============================================================ */
:root {
  --red:      #D00010;
  --red-dk:   #A8000D;
  --green:    #108030;
  --green-dk: #0B5E23;
  --green-soft: #E7F4EB;
  --red-soft: #FBE8E9;
  --ink:      #12151A;
  --ink-2:    #59606A;
  --paper:    #FFFFFF;
  --soft:     #F5F6F4;
  --dark:     #0F1216;
  --dark-2:   #171B21;
  --line:     rgba(18, 21, 26, 0.10);
  --line-d:   rgba(255, 255, 255, 0.12);
  --r: 18px;
  --r-sm: 12px;
  --maxw: 1180px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-d: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 10px 34px rgba(18, 21, 26, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { font-family: var(--font); font-size: clamp(1rem, .97rem + .2vw, 1.08rem); line-height: 1.65; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
::selection { background: var(--green); color: #fff; }

h1, h2, h3 { font-family: var(--font-d); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }

/* Feiner Filmkorn-Schleier: nimmt der Seite die sterile Glätte */
body::after { content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.sec { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.sec-h { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-h h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.7rem); }
.sec-h p { color: var(--ink-2); margin-top: .7rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55em; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dk); margin-bottom: .9rem; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.muted { color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: .95em 1.6em; border-radius: 100px; font-weight: 600; font-size: .97rem; border: 1.5px solid transparent; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: linear-gradient(180deg, #E40012, var(--red) 55%, #B4000E); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 22px rgba(208, 0, 16, .3); }
.btn-red:hover { background: var(--red-dk); box-shadow: 0 12px 28px rgba(208, 0, 16, .36); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark-ghost { border-color: var(--line-d); color: #fff; }
.btn-dark-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(18,21,26,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 700; letter-spacing: -.02em; font-size: 1.05rem; }
.brand img { height: 48px; width: 48px; border-radius: 12px; }
.brand .b-red { color: var(--red); } .brand .b-green { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a { font-size: .95rem; font-weight: 500; position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-tel { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; font-size: .95rem; }
.nav-tel svg { width: 1em; height: 1em; color: var(--green); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav-toggle span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .35s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 960px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem 1.4rem 1.4rem; transform: translateY(-130%); transition: transform .45s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a { padding: .95rem 0; font-size: 1.15rem; font-weight: 600; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .hide-m { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(92deg, rgba(10, 13, 16, 0.88) 0%, rgba(10, 13, 16, 0.62) 44%, rgba(10, 13, 16, 0.16) 100%), url("../img/hero-bg.jpg") center right / cover no-repeat, var(--dark); color: #fff; padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(4rem, 9vw, 7rem); position: relative; overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(10px); }
.hero::before { width: 620px; height: 620px; top: -220px; right: -180px; background: radial-gradient(closest-side, rgba(16, 128, 48, .35), transparent 70%); }
.hero::after { width: 520px; height: 520px; bottom: -240px; left: -160px; background: radial-gradient(closest-side, rgba(208, 0, 16, .25), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr; position: relative; z-index: 1; }
.hero-grid > div { max-width: 640px; }
.hero .eyebrow { color: #9BE0B0; }
.hero h1 { font-size: clamp(2.1rem, 1.2rem + 4.6vw, 3.9rem); }
.hero h1 em { font-style: normal; color: #FF5A66; white-space: nowrap; }
.hero .lead { color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); max-width: 46ch; margin-top: 1.2rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: .7rem; margin-top: 1.8rem; color: rgba(255,255,255,.85); font-size: .95rem; flex-wrap: wrap; }
.stars { color: #FFC24B; letter-spacing: 2px; font-size: 1rem; }
.hero-trust b { color: #fff; }

@media (max-width: 860px) {
  .hero { background: linear-gradient(rgba(10, 13, 16, 0.78), rgba(10, 13, 16, 0.82)), url("../img/hero-bg.jpg") center / cover no-repeat, var(--dark); }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--dark); color: rgba(255,255,255,.85); border-top: 1px solid var(--line-d); overflow: hidden; padding-block: .95rem; position: relative; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marq 30s linear infinite; }
.marquee span { font-family: var(--font-d); font-weight: 500; font-size: 1.02rem; display: inline-flex; gap: 3rem; align-items: center; }
.marquee span::after { content: "✶"; color: var(--red); }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Foto-Collage: echte Läden ---------- */
.gallery-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; gap: clamp(.9rem, 2vw, 1.5rem); align-items: start; }
.gallery-grid figure { --tf: rotate(0deg); margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: 0 18px 44px rgba(18,21,26,.16); position: relative; transform: var(--tf); transition: transform .45s var(--ease); }
.gallery-grid figure:nth-child(1) { --tf: rotate(-1.6deg); }
.gallery-grid figure:nth-child(2) { --tf: rotate(1.2deg) translateY(clamp(10px, 2.5vw, 34px)); }
.gallery-grid figure:nth-child(3) { --tf: rotate(-0.8deg); }
.gallery-grid figure:hover { transform: rotate(0) scale(1.015); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5.4; display: block; }
.gallery-grid figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(15,18,22,.82); color: #fff; backdrop-filter: blur(6px); border-radius: 100px; padding: .42em 1em; font-size: .8rem; font-weight: 600; }
@media (max-width: 780px) {
  /* Mobil: alle drei Fotos als Wisch-Galerie mit Snap */
  .gallery-grid { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin-inline: calc(-1 * clamp(1.1rem, 4vw, 2.5rem)); padding: .3rem clamp(1.1rem, 4vw, 2.5rem) 1rem; scrollbar-width: none; }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-grid figure { --tf: rotate(0deg); flex: 0 0 78%; scroll-snap-align: center; }
}

/* ---------- Stats-Band ---------- */
.stats-band { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; top: -260px; left: 55%; background: radial-gradient(closest-side, rgba(16,128,48,.3), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-block: clamp(2.6rem, 5vw, 4rem); position: relative; }
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; } }
.stat .n { font-family: var(--font-d); font-weight: 700; font-size: clamp(2.3rem, 4.6vw, 3.6rem); letter-spacing: -.03em; line-height: 1; }
.stat .n em { font-style: normal; color: #2FC162; }
.stat p { color: rgba(255,255,255,.62); font-size: .92rem; margin-top: .35rem; }

/* ---------- Trustbar ---------- */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.4rem; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust { display: flex; align-items: center; gap: .7rem; font-size: .92rem; font-weight: 600; }
.trust svg { width: 34px; height: 34px; flex: none; color: var(--green); background: var(--green-soft); border-radius: 10px; padding: 7px; }
.trust small { display: block; color: var(--ink-2); font-weight: 400; font-size: .8rem; }

/* ---------- Karten / Leistungen ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 960px) { .grid3, .grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid3, .grid4, .grid2 { grid-template-columns: 1fr; } }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 2.5vw, 1.9rem); transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; position: relative; }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(16,128,48,.4); }
.card .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-soft); color: var(--green-dk); display: grid; place-items: center; margin-bottom: 1rem; }
.card .ico.red { background: var(--red-soft); color: var(--red); }
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card p { color: var(--ink-2); font-size: .93rem; }
.card .more { display: inline-flex; align-items: center; gap: .4em; color: var(--red); font-weight: 600; font-size: .9rem; margin-top: .9rem; }
.soft { background: var(--soft); }

/* ---------- USP-Liste ---------- */
.usps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 720px) { .usps { grid-template-columns: 1fr; } }
.usp { display: flex; gap: .9rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 1.1rem 1.2rem; }
.usp svg { width: 26px; height: 26px; flex: none; color: var(--green); margin-top: 2px; }
.usp b { display: block; margin-bottom: .15rem; }
.usp p { color: var(--ink-2); font-size: .9rem; }

/* ---------- Standorte ---------- */
.stores { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .stores { grid-template-columns: 1fr; } }
.store { --sp: clamp(1.4rem, 2.5vw, 1.8rem); border: 1px solid var(--line); border-radius: var(--r); padding: var(--sp); background: var(--paper); display: flex; flex-direction: column; gap: .7rem; transition: box-shadow .35s, transform .35s var(--ease); overflow: hidden; }
.store h3 a { transition: color .2s; }
.store h3 a:hover { color: var(--red); }
/* Google Maps, Zwei-Klick-Lösung */
.gmap { position: relative; background: #E9EDE8; overflow: hidden; }
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gmap-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .55rem; text-align: center; padding: 1rem; }
.gmap-ph svg { width: 34px; height: 34px; color: var(--red); }
.gmap-ph p { font-size: .76rem; color: var(--ink-2); max-width: 34ch; line-height: 1.45; }
.gmap-ph p a { text-decoration: underline; }
.gmap-ph .btn { padding: .55em 1.15em; font-size: .84rem; }
.store .gmap { height: 176px; margin: calc(-1 * var(--sp)) calc(-1 * var(--sp)) .7rem; border-bottom: 1px solid var(--line); }
.gmap-big { height: clamp(300px, 42vw, 430px); border-radius: var(--r); box-shadow: 0 20px 50px rgba(18, 21, 26, 0.12); }
/* Galerie-Strip auf Standortseiten */
.gstrip { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: .3rem .2rem 1rem; scrollbar-width: none; }
.gstrip::-webkit-scrollbar { display: none; }
.gstrip img { height: clamp(220px, 30vw, 330px); width: auto; border-radius: var(--r-sm); scroll-snap-align: center; box-shadow: 0 12px 30px rgba(18, 21, 26, 0.12); flex: none; }
/* Kontaktdaten-Raster Standortseiten */
.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 780px) { .kontakt-grid { grid-template-columns: 1fr; } }
/* Kontaktformular (dezent) */
.kform { max-width: 560px; }
.kform .fld { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.kform label { font-size: .82rem; font-weight: 600; }
.kform input, .kform textarea { font: inherit; padding: .8em 1em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); transition: border-color .2s; }
.kform input:focus, .kform textarea:focus { outline: none; border-color: var(--green); }
.kform textarea { min-height: 120px; resize: vertical; }
.kform .note { font-size: .78rem; color: var(--ink-2); margin-top: .6rem; }
.kform .ok { background: var(--green-soft); color: var(--green-dk); border-radius: 10px; padding: .8em 1em; font-size: .9rem; display: none; margin-bottom: .9rem; }
mark.ph { background: #FFF3C4; color: var(--ink); padding: .06em .4em; border-radius: 6px; font-weight: 500; }
.ph-map { transform: none; box-shadow: 0 20px 50px rgba(18, 21, 26, 0.12); }
.store:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.store .city { display: inline-flex; align-items: center; gap: .5em; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dk); }
.store .city::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.store .city .new { background: var(--red); color: #fff; border-radius: 100px; padding: .15em .7em; font-size: .68rem; letter-spacing: .04em; }
.store h3 { font-size: 1.25rem; }
.store address { font-style: normal; color: var(--ink-2); font-size: .93rem; line-height: 1.55; }
.store .rate { font-size: .82rem; color: var(--ink-2); }
.store .rate span[aria-hidden] { color: #FFB020; letter-spacing: 1.5px; font-size: .76rem; margin-right: .2em; }
.store .hours { font-size: .88rem; color: var(--ink-2); border-top: 1px dashed var(--line); padding-top: .7rem; }
.store .hours b { color: var(--ink); font-weight: 600; }
.store .row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: auto; padding-top: .6rem; }
.store .row .btn { padding: .7em 1.15em; font-size: .88rem; }

/* ---------- Bewertungen ---------- */
.rating-band { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 780px) { .rating-band { grid-template-columns: 1fr; } }
.rating-num { font-size: clamp(3.6rem, 8vw, 5.5rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.rating-num small { display: block; font-size: .95rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; margin-top: .4rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.7rem; display: flex; flex-direction: column; }
.quote p { font-size: 1.05rem; font-weight: 500; letter-spacing: -.01em; }
.quote footer { color: var(--ink-2); font-size: .85rem; margin-top: auto; padding-top: .8rem; }
.qstars { color: #FFB020; letter-spacing: 2.5px; font-size: .85rem; display: block; margin-bottom: .6rem; }
.quote-sum { align-items: flex-start; background: var(--dark); color: #fff; border-color: var(--dark); }
.quote-sum .sum-n { font-family: var(--font-d); font-weight: 700; font-size: 3rem; letter-spacing: -.03em; line-height: 1; }
.quote-sum .sum-n small { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: 0; }
.quote-sum footer { color: rgba(255,255,255,.65); }
.review-links { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: s; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.5rem 1.4rem; counter-increment: s; }
.step::before { content: counter(s); display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 700; margin-bottom: .9rem; }
.step b { display: block; font-size: 1.08rem; margin-bottom: .3rem; }
.step p { color: var(--ink-2); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; font-weight: 500; transition: transform .3s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); padding-bottom: 1.15rem; max-width: 62ch; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--dark); color: #fff; border-radius: clamp(18px, 3vw, 28px); padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; top: -220px; right: -140px; background: radial-gradient(closest-side, rgba(16,128,48,.35), transparent 70%); }
.cta-band h2 { font-size: clamp(1.6rem, 1.1rem + 2.6vw, 2.6rem); max-width: 20ch; margin-inline: auto; position: relative; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: .8rem; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ---------- Marken ---------- */
.brands { display: flex; flex-wrap: wrap; gap: .6rem; }
.brands span { border: 1px solid var(--line); border-radius: 100px; padding: .5em 1.1em; font-size: .9rem; font-weight: 500; color: var(--ink-2); background: var(--paper); }

/* ---------- Unterseiten ---------- */
.page-hero { padding-top: clamp(7.5rem, 14vh, 10rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.2rem); max-width: 22ch; }
.page-hero .lead { color: var(--ink-2); margin-top: 1rem; max-width: 56ch; font-size: 1.1rem; }
.ph-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .ph-grid { grid-template-columns: 1fr; } }
.ph-media { --tf: rotate(1.2deg); border-radius: var(--r); overflow: hidden; box-shadow: 0 20px 50px rgba(18,21,26,.18); transform: var(--tf); }
.ph-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; }
@media (max-width: 860px) { .ph-media { --tf: rotate(0deg); } }
.svc-block { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); color: var(--green-dk); display: grid; place-items: center; flex: none; }
.svc-block .ico svg { width: 24px; height: 24px; }
.svc-block h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.svc-block p { color: var(--ink-2); max-width: 62ch; }
@media (max-width: 560px) { .svc-block { grid-template-columns: 1fr; } }

/* ---------- Legal ---------- */
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: .8rem; line-height: 1.7; }
.legal ul { margin-left: 1.2rem; }
.draft-note { background: var(--red-soft); border: 1px solid rgba(208,0,16,.25); color: var(--red-dk); border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .92rem; margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.82); padding-block: clamp(3rem, 6vw, 4.5rem) 6.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line-d); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; }
.footer .brand img { background: #fff; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.footer a { display: block; padding-block: .22rem; font-size: .92rem; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.66); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .84rem; color: rgba(255,255,255,.55); }
.footer-bottom a { display: inline; padding: 0; }
.footer-note { margin-top: .9rem; font-size: .85rem; color: rgba(255,255,255,.6); max-width: 34ch; }

/* ---------- Mobile Sticky-Bar ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem; }
.mobilebar .btn { flex: 1; padding: .85em 1em; font-size: .92rem; }
@media (max-width: 860px) { .mobilebar { display: flex; } body { padding-bottom: 66px; } .footer { padding-bottom: 8rem; } }

/* ---------- Mobile-Feinschliff: große Tap-Ziele, ruhige Abstände ---------- */
a, button { -webkit-tap-highlight-color: transparent; }
.btn, .nav-toggle, .faq summary { touch-action: manipulation; }
.nav-toggle { padding: 8px; margin: -8px; box-sizing: content-box; }
@media (max-width: 480px) {
  .sec { padding-block: 2.7rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; }
  .store .row { width: 100%; }
  .store .row .btn { flex: 1 1 auto; justify-content: center; }
  .review-links .btn { flex: 1 1 44%; }
  .cta-band .hero-cta .btn { flex: 1 1 100%; }
  .rating-num { font-size: 3.4rem; }
}

/* ---------- Mobil entlasten: weniger Chrome, mehr Inhalt im ersten Viewport ---------- */
@media (max-width: 560px) {
  .hero { padding-top: 5.6rem; padding-bottom: 2.4rem; }
  .hero h1 { font-size: clamp(1.9rem, 8.6vw, 2.4rem); }
  .hero .lead { font-size: .98rem; margin-top: .85rem; }
  .hero-cta { margin-top: 1.2rem; gap: .55rem; }
  .hero-trust { margin-top: 1rem; font-size: .86rem; }
  /* Zweit-Aktionen als ruhiger Textlink statt zweitem Button */
  .hero-cta .btn-dark-ghost { background: none; border: none; box-shadow: none; color: rgba(255, 255, 255, .88); text-decoration: underline; text-underline-offset: 4px; padding: .5em .3em; flex: 0 1 auto; align-self: center; }
  .marquee { padding-block: .65rem; }
  .marquee span { font-size: .8rem; }
  .marquee-track { gap: 2.2rem; }
  .marquee span::after { margin-left: 0; }
  /* Icon-Leiste ist mobil doppelt (Hero-Trust + Zahlenband) */
  .trustbar { display: none; }
  /* Karten sind selbst Links, der rote Pfeil-Link darunter ist Rauschen */
  .card .more { display: none; }
  .card { padding: 1.2rem 1.25rem; }
  .card .ico { width: 40px; height: 40px; margin-bottom: .7rem; }
  .card h3 { font-size: 1.08rem; }
  .card p { font-size: .9rem; }
  /* Startseite: Standort-Karten kompakt, die Google-Karten gibt es auf der Standorte-Seite */
  #standorte .store .gmap { display: none; }
  #standorte .store .muted { display: none; }
  .store { gap: .45rem; }
  .store .hours { font-size: .84rem; }
  .sec-h h2 { font-size: 1.55rem; }
  .sec-h p { font-size: .94rem; }
  .steps .step { padding: 1.2rem 1.25rem 1.1rem; }
  .usps { gap: .7rem; }
  .usp { padding: .95rem 1.05rem; }
  .draft-badge { font-size: .66rem; padding: .35em .8em; opacity: .55; left: 10px; bottom: 74px; }
  .page-hero { padding-top: 5.8rem; }
}

/* ---------- Entwurfs-Badge ---------- */
.draft-badge { position: fixed; left: 14px; bottom: 14px; z-index: 95; background: var(--ink); color: #fff; border-radius: 100px; padding: .45em 1em; font-size: .78rem; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.25); opacity: .92; }
.draft-badge a { color: #9BE0B0; }
@media (max-width: 860px) { .draft-badge { bottom: 78px; } }

/* ---------- Erster Eindruck: Hero-Inhalte gleiten beim Laden gestaffelt rein ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .lead, .hero .hero-cta, .hero .hero-trust,
  .page-hero .eyebrow, .page-hero h1, .page-hero .lead, .page-hero .hero-cta, .page-hero .rate {
    animation: peUp .7s var(--ease) both;
  }
  .hero h1, .page-hero h1 { animation-delay: .08s; }
  .hero .lead, .page-hero .lead { animation-delay: .16s; }
  .hero .hero-cta, .page-hero .rate { animation-delay: .24s; }
  .hero .hero-trust, .page-hero .hero-cta { animation-delay: .32s; }
}
@keyframes peUp { from { opacity: 0; transform: translateY(20px); filter: blur(10px); } }

/* ---------- Animierte Icon-Szenen: spielen einmal, wenn die Karte ins Bild kommt ---------- */
.card .ico { width: 56px; height: 56px; border-radius: 15px; }
.card .ico .aicon { width: 36px; height: 36px; }
.aicon .s { fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.aicon [class*=" c-"], .aicon [class^="c-"] { transform-box: fill-box; transform-origin: center; }
/* Szene 1: Riss zeichnet sich, verblasst, Haken poppt */
.aicon .c-crack { stroke-dasharray: 30; stroke-dashoffset: 30; opacity: 0; }
.play .c-crack { animation: aDraw .5s .2s var(--ease) forwards, aOut .35s 1.25s forwards; }
.aicon .c-check { stroke: var(--green); opacity: 0; transform: scale(.4); }
.play .c-check { animation: aPop .5s 1.45s var(--ease) forwards; }
/* Szene 2: Akku lädt */
.aicon .c-fill { fill: var(--green); transform: scaleX(0); transform-origin: left center; }
.play .c-fill { animation: aGrow 1s .25s var(--ease) forwards; }
/* Szene 3: Stecker gleitet rein, Funken */
.aicon .c-plug { transform: translateX(-9px); }
.play .c-plug { animation: aSlideIn .65s .2s var(--ease) forwards; }
.aicon .c-z1, .aicon .c-z2 { stroke: var(--green); opacity: 0; }
.play .c-z1 { animation: aIn .3s 1s forwards; }
.play .c-z2 { animation: aIn .3s 1.18s forwards; }
/* Szene 4: Tropfen fallen und verschwinden */
.aicon .c-d1, .aicon .c-d2 { fill: #3E8FD8; opacity: 0; }
.play .c-d1 { animation: aDrop .7s .2s ease-in forwards; }
.play .c-d2 { animation: aDrop .7s .5s ease-in forwards; }
/* Szene 5: Datenpunkte wandern rüber, Haken am Ziel */
.aicon .c-p1, .aicon .c-p2 { fill: currentColor; opacity: 0; }
.aicon .c-ok { stroke: var(--green); opacity: 0; transform: scale(.4); }
.play .c-p1 { animation: aTravel .6s .2s ease-in-out 2 forwards; }
.play .c-p2 { animation: aTravel .6s .45s ease-in-out 2 forwards; }
.play .c-ok { animation: aPop .5s 1.6s var(--ease) forwards; }
/* Szene 6: Handy und Münze tauschen die Seiten */
.play .c-ph { animation: aSwapR .8s .25s var(--ease) forwards; }
.play .c-eu { animation: aSwapL .8s .25s var(--ease) forwards; }
@keyframes aDraw { 0% { opacity: 1; } 100% { opacity: 1; stroke-dashoffset: 0; } }
@keyframes aOut { to { opacity: 0; } }
@keyframes aIn { to { opacity: 1; } }
@keyframes aPop { 0% { opacity: 0; transform: scale(.4); } 70% { opacity: 1; transform: scale(1.15); } 100% { opacity: 1; transform: scale(1); } }
@keyframes aGrow { to { transform: scaleX(1); } }
@keyframes aSlideIn { to { transform: translateX(0); } }
@keyframes aDrop { 0% { opacity: 0; transform: translateY(-4px); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }
@keyframes aTravel { 0% { opacity: 0; transform: translateX(0); } 25% { opacity: 1; } 100% { opacity: 0; transform: translateX(11px); } }
@keyframes aSwapR { 60% { transform: translateX(8.5px); } 100% { transform: translateX(7px); } }
@keyframes aSwapL { 60% { transform: translateX(-8.5px); } 100% { transform: translateX(-7px); } }
/* Ohne Animationen (reduced motion / QA): direkt der Endzustand */
@media (prefers-reduced-motion: reduce) {
  .aicon [class*=" c-"], .aicon [class^="c-"] { animation: none !important; }
  .aicon .c-crack, .aicon .c-d1, .aicon .c-d2, .aicon .c-p1, .aicon .c-p2 { opacity: 0; }
  .aicon .c-check, .aicon .c-ok { opacity: 1; transform: scale(1); }
  .aicon .c-z1, .aicon .c-z2 { opacity: 1; }
  .aicon .c-fill { transform: scaleX(1); }
  .aicon .c-plug { transform: translateX(0); }
  .aicon .c-ph { transform: translateX(7px); }
  .aicon .c-eu { transform: translateX(-7px); }
}
body.noanim .aicon [class*=" c-"], body.noanim .aicon [class^="c-"] { animation: none !important; }
body.noanim .aicon .c-crack, body.noanim .aicon .c-d1, body.noanim .aicon .c-d2, body.noanim .aicon .c-p1, body.noanim .aicon .c-p2 { opacity: 0; }
body.noanim .aicon .c-check, body.noanim .aicon .c-ok, body.noanim .aicon .c-z1, body.noanim .aicon .c-z2 { opacity: 1; transform: scale(1); }
body.noanim .aicon .c-fill { transform: scaleX(1); }
body.noanim .aicon .c-plug { transform: translateX(0); }
body.noanim .aicon .c-ph { transform: translateX(7px); }
body.noanim .aicon .c-eu { transform: translateX(-7px); }

/* ---------- Reveal: alles schiebt sich von unten rein und blurrt auf ---------- */
.rv { opacity: 0; transform: translateY(30px); filter: blur(12px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.rv.in { opacity: 1; transform: none; filter: blur(0); }
/* Elemente mit eigener Ruhe-Rotation (--tf): weiter Einflug von unten in die gedrehte Endlage */
.rv-gal { opacity: 0; transform: var(--tf, none) translateY(var(--ey, 120px)) rotate(var(--er, 0deg)) scale(.93); filter: blur(16px); transition: opacity .95s var(--ease), transform .95s var(--ease), filter .95s var(--ease); }
.rv-gal.in { opacity: 1; transform: var(--tf, none); filter: blur(0); }
.gallery-grid figure:nth-child(1) { --ey: 130px; --er: -5deg; }
.gallery-grid figure:nth-child(2) { --ey: 160px; --er: 3deg; }
.gallery-grid figure:nth-child(3) { --ey: 130px; --er: 5deg; }
@media (prefers-reduced-motion: reduce) { .rv, .rv-gal { opacity: 1 !important; transform: var(--tf, none) !important; filter: none !important; transition: none; } }
