/* ==========================================================
   Technikversteher — Stylesheet
   Farbwelt: tiefes Petrol (Vertrauen, ruhig) + warmes Amber
   (Freundlichkeit, Handlungsaufforderung).
   Modern gestaltet, aber bewusst mit grosser Schrift, hohen
   Kontrasten und grossen Klickflaechen.
   ========================================================== */

:root {
  --deep:       #0A2B2F;
  --deep-2:     #103F44;
  --brand:      #0B5A5E;
  --brand-2:    #10908C;
  --brand-soft: #E2F0EE;
  --sun:        #FFC34D;
  --sun-deep:   #E8A21B;
  --paper:      #FFFFFF;
  --tint:       #F2F8F7;
  --line:       #DCE8E7;
  --ink:        #0A2B2F;
  --ink-soft:   #46595B;

  --r-xl: 34px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --shadow-sm: 0 2px 8px -2px rgba(10, 43, 47, .14);
  --shadow-md: 0 14px 30px -14px rgba(10, 43, 47, .28);
  --shadow-lg: 0 34px 70px -30px rgba(10, 43, 47, .40);

  --wrap: 78rem;
  --text: 34em;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: Manrope, "Segoe UI", system-ui, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }

p { margin: 0 0 1.1em; max-width: var(--text); }
a { color: var(--brand); }

:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 3px; border-radius: 4px; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 46rem; }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 200;
  background: var(--deep); color: #fff;
  padding: .9rem 1.2rem; border-radius: var(--r-sm);
}

/* ---------- Kopfzeile ---------- */

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.hdr__row {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 84px;
}

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; margin-right: auto;
}
.brand__mark {
  width: 46px; height: 46px; flex: none;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand-2), var(--brand) 65%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 25px; height: 25px; }
.brand__name {
  font-family: Manrope, system-ui, Arial, sans-serif;
  font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.03em; color: var(--deep);
  line-height: 1.05;
}
.brand__sub {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: var(--ink-soft);
}

.nav__list { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: .75rem 1.05rem;
  font-weight: 600; font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__list a:hover { background: var(--brand-soft); color: var(--brand); }
.nav__list a[aria-current="page"] { background: var(--deep); color: #fff; }

.hdr__phone {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.4rem;
  background: var(--sun); color: var(--deep);
  border: 2px solid var(--sun-deep);
  border-radius: 999px;
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), background .2s var(--ease);
}
.hdr__phone:hover { background: var(--sun-deep); transform: translateY(-2px); color: var(--deep); }
.hdr__phone svg { width: 21px; height: 21px; }

.burger {
  display: none; align-items: center; gap: .55rem;
  min-height: 56px; padding: 0 1.15rem;
  font: inherit; font-weight: 700; font-size: 1.05rem;
  color: var(--deep); background: var(--paper);
  border: 2px solid var(--line); border-radius: 999px; cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* ---------- Knoepfe ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 64px; padding: .9rem 2rem;
  font-family: Manrope, system-ui, Arial, sans-serif;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: 999px;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 22px; height: 22px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--sun { background: var(--sun); border-color: var(--sun-deep); color: var(--deep); box-shadow: var(--shadow-md); }
.btn--sun:hover { background: var(--sun-deep); transform: translateY(-2px); color: var(--deep); }

.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.btn--brand:hover { background: var(--deep-2); transform: translateY(-2px); color: #fff; }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--outline { background: var(--paper); border-color: var(--line); color: var(--deep); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------- Abschnitte ---------- */

.sec { padding: 5.5rem 0; }
.sec--tint { background: var(--tint); }
.sec--tight { padding: 3.5rem 0; }

.sec__head { max-width: 42rem; margin-bottom: 3rem; }
.sec__head p { font-size: 1.3rem; color: var(--ink-soft); }

.tagline {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1.1rem; margin-bottom: 1.4rem;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 999px;
  font-size: 1rem; font-weight: 700;
}
.tagline span { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-2); }

/* ---------- Bildbereich (Hero) ---------- */

.hero { padding: 1.75rem 0 0; }

.hero__panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 90% at 85% 5%, #16565A 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 100%, #0D474B 0%, transparent 60%),
    linear-gradient(155deg, #0A2B2F 10%, #093137 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  padding: clamp(2.5rem, 5vw, 5rem);
}
.hero__panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero__lead {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: #CFE4E3; max-width: 30em; margin-bottom: 0;
}
.hero .tagline { background: rgba(255,255,255,.12); color: #DCF0EE; }
.hero .tagline span { background: var(--sun); }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.25rem;
  margin: 2.5rem 0 0; padding: 1.75rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__facts li {
  display: flex; align-items: center; gap: .7rem;
  font-size: 1.08rem; font-weight: 600; color: #E7F3F2;
}
.hero__facts svg { width: 24px; height: 24px; color: var(--sun); flex: none; }

/* Bild- bzw. Videoflaeche im Hero */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #14555A, #0B383D);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.65);
}
.hero__media > svg,
.hero__media > img,
.hero__media > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media > img,
.hero__media > video { z-index: 2; }

.hero__badge {
  position: absolute; z-index: 3; left: 1.25rem; bottom: 1.25rem;
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1.25rem .85rem .9rem;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 1rem; font-weight: 700; color: var(--deep);
}
.hero__badge b {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sun); color: var(--deep);
}
.hero__badge svg { width: 20px; height: 20px; }

/* ---------- Leistungen als Bento-Raster ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.tile h3 { margin-bottom: .35em; }
.tile p { color: var(--ink-soft); margin-bottom: 0; font-size: 1.15rem; }
.tile__ico {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin-bottom: 1.5rem;
  border-radius: var(--r-md);
  background: var(--brand-soft); color: var(--brand);
}
.tile__ico svg { width: 31px; height: 31px; }

.tile--wide {
  grid-column: span 2;
  background: linear-gradient(150deg, var(--deep) 15%, var(--brand) 120%);
  border-color: transparent; color: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.tile--wide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile--wide h3 { color: #fff; font-size: 1.75rem; }
.tile--wide p { color: #CFE4E3; }
.tile--wide .tile__ico { background: rgba(255,255,255,.14); color: var(--sun); }
.tile__deco { width: 120px; height: 120px; color: rgba(255,255,255,.22); }
.tile__deco svg { width: 100%; height: 100%; }

/* ---------- Ablauf ---------- */

.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; list-style: none; padding: 0; margin: 0; }
.flow li { position: relative; padding-top: 1rem; }
.flow__no {
  display: grid; place-items: center;
  width: 58px; height: 58px; margin-bottom: 1.35rem;
  border-radius: 50%;
  background: var(--sun); color: var(--deep);
  font-family: Manrope, system-ui, sans-serif; font-weight: 800; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.flow li::before {
  content: ""; position: absolute; top: 1rem; left: 58px; right: -2rem; height: 58px;
  background: linear-gradient(90deg, var(--line), var(--line)) center / 100% 3px no-repeat;
}
.flow li:last-child::before { display: none; }
.flow p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Vertrauensband mit Bildplaetzen ---------- */

.trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.shot {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--brand-2), var(--brand));
  box-shadow: var(--shadow-md);
}
.shot > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.shot > img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.shot__cap {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(6,28,31,.85));
  color: #fff; font-weight: 700; font-size: 1.05rem;
}

.promise { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 3rem; list-style: none; padding: 0; margin: 0; }
.promise li { display: flex; gap: 1rem; align-items: flex-start; }
.promise__tick {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: #fff;
}
.promise__tick svg { width: 21px; height: 21px; }
.promise h3 { margin-bottom: .2em; font-size: 1.2rem; }
.promise p { margin: 0; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Videoabschnitt ---------- */

.video-sec { display: none; }        /* wird von script.js eingeschaltet, sobald die Videodatei existiert */
.video-sec.is-ready { display: block; }
.video-frame {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--deep);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Aufruf-Band ---------- */

.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(110% 120% at 100% 0%, #17605F 0%, transparent 55%),
    linear-gradient(150deg, var(--deep), #0A363A);
  color: #fff;
  padding: clamp(2.5rem, 4.5vw, 4.25rem);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 2.5rem; align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFE4E3; font-size: 1.3rem; margin-bottom: 0; }
.cta-band__num {
  font-family: Manrope, system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--sun);
  text-decoration: none; display: inline-block; margin-bottom: 1rem;
}
.cta-band__num:hover { color: #fff; }

/* ---------- Themenliste (Seite Unsere Hilfe) ---------- */

.topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.topic {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.1rem;
}
.topic__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.topic__top h2 { font-size: 1.5rem; margin: 0; }
.topic__ico {
  display: grid; place-items: center; flex: none;
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--brand-soft); color: var(--brand);
}
.topic__ico svg { width: 28px; height: 28px; }
.topic ul { list-style: none; margin: 0; padding: 0; max-width: none; }
.topic li {
  position: relative; padding-left: 1.9rem; margin-bottom: .7rem;
  font-size: 1.15rem; color: var(--ink-soft);
}
.topic li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--sun);
}

/* ---------- Preise ---------- */

.rates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.rate {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.1rem;
  display: flex; flex-direction: column;
}
.rate--lead {
  background: linear-gradient(150deg, var(--deep) 20%, var(--brand) 130%);
  border-color: transparent; color: #fff;
}
.rate--lead h3, .rate--lead .rate__num { color: #fff; }
.rate--lead p { color: #CFE4E3; }
.rate__num {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--brand); line-height: 1.1; margin: .2rem 0 .6rem;
}
.rate__num small { display: block; font-size: 1.05rem; font-weight: 600; letter-spacing: 0; color: inherit; opacity: .8; }
.rate p { color: var(--ink-soft); margin-bottom: 0; }
.rate__pill {
  align-self: flex-start; margin-bottom: 1.2rem;
  padding: .4rem 1rem; border-radius: 999px;
  background: var(--sun); color: var(--deep);
  font-size: .98rem; font-weight: 800;
}

/* Ausklappbare Fragen */
.faq { border-top: 1px solid var(--line); max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem .25rem; min-height: 68px;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 800; text-align: left; letter-spacing: -0.015em;
  color: var(--deep); background: none; border: 0; cursor: pointer;
}
.faq__q:hover { color: var(--brand); }
.faq__sign { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); }
.faq__sign svg { width: 19px; height: 19px; transition: transform .25s var(--ease); }
.faq__q[aria-expanded="true"] .faq__sign svg { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 .25rem 1.6rem; }
.faq__a p { margin: 0; color: var(--ink-soft); }
.faq__item.is-open .faq__a { display: block; }

/* ---------- Kontakt ---------- */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }

.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.panel--dark {
  background: linear-gradient(155deg, var(--deep), #0A383C);
  border-color: transparent; color: #fff;
}
.panel--dark h2, .panel--dark h3 { color: #fff; }
.panel--dark p { color: #CFE4E3; }

.reach { list-style: none; margin: 0; padding: 0; }
.reach li { padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.reach li:last-child { border-bottom: 0; padding-bottom: 0; }
.reach__k { display: block; font-size: 1rem; font-weight: 700; color: #9FC4C2; margin-bottom: .2rem; }
.reach__v { font-family: Manrope, system-ui, sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.reach__v:hover { color: var(--sun); }

.field { margin-bottom: 1.5rem; }
.field label { display: block; font-weight: 700; margin-bottom: .4rem; }
.field .hint { display: block; font-size: 1.05rem; font-weight: 400; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--tint);
  padding: .95rem 1.1rem; min-height: 62px;
  border: 2px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus { background: var(--paper); border-color: var(--brand); }
.field__err { display: none; margin-top: .5rem; font-weight: 700; color: #B3261E; }
.field.is-wrong input, .field.is-wrong textarea { border-color: #B3261E; background: #FDF3F2; }
.field.is-wrong .field__err { display: block; }
.form-note { font-size: 1.05rem; color: var(--ink-soft); }

/* ---------- Fusszeile ---------- */

.ftr { background: var(--deep); color: #CFE4E3; padding: 4.5rem 0 2.5rem; margin-top: 6rem; }
.ftr__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.ftr h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.ftr a { color: #CFE4E3; text-decoration: none; }
.ftr a:hover { color: var(--sun); }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: .7rem; }
.ftr .brand__name { color: #fff; }
.ftr .brand__sub { color: #9FC4C2; }
.ftr__note {
  margin: 3rem 0 0; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 1.02rem; color: #9FC4C2; max-width: none;
}

/* ---------- Feste Anrufleiste (Handy) ---------- */

.callbar { display: none; }

/* ---------- Bewegung beim Laden (einmalig, nur Hero) ---------- */

.reveal { opacity: 0; transform: translateY(14px); }
.is-loaded .reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.is-loaded .reveal:nth-child(2) { transition-delay: .08s; }
.is-loaded .reveal:nth-child(3) { transition-delay: .16s; }

/* ---------- Mobil ---------- */

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 11; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--wide { grid-column: span 2; }
  .cta-band { grid-template-columns: 1fr; }
  .ftr__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hdr__phone span { display: none; }
  .hdr__phone { padding: .85rem 1.05rem; }
  .burger { display: inline-flex; }

  .nav.is-open {
    display: block; position: fixed; inset: 84px 0 0;
    background: var(--paper); z-index: 99;
    padding: 1.5rem; overflow-y: auto;
  }
  .nav.is-open .nav__list { flex-direction: column; gap: .5rem; }
  .nav.is-open .nav__list a {
    padding: 1.2rem 1.3rem; font-size: 1.3rem;
    background: var(--tint); border-radius: var(--r-md);
  }
  .nav.is-open .nav__list a[aria-current="page"] { background: var(--deep); color: #fff; }

  .flow { grid-template-columns: 1fr; gap: 1.75rem; }
  .flow li::before { display: none; }
  .topics, .rates, .contact, .promise, .trust { grid-template-columns: 1fr; }
  .tile--wide { grid-template-columns: 1fr; }
  .tile__deco { display: none; }
}

@media (max-width: 660px) {
  body { padding-bottom: 88px; }
  .sec { padding: 3.75rem 0; }
  .hero { padding: 1rem 0 0; }
  .hero__panel { border-radius: var(--r-lg); padding: 2rem 1.4rem; }
  .bento { grid-template-columns: 1fr; }
  .tile, .topic, .rate { padding: 1.6rem; }
  .ftr__cols { grid-template-columns: 1fr; gap: 2.25rem; }
  .btn { width: 100%; }
  .wrap { padding: 0 1.1rem; }

  .callbar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: .65rem;
    min-height: 62px; border-radius: 999px;
    background: var(--sun); border: 2px solid var(--sun-deep);
    font-family: Manrope, system-ui, sans-serif;
    font-size: 1.25rem; font-weight: 800; color: var(--deep); text-decoration: none;
  }
  .callbar svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .hdr, .callbar, .video-sec { display: none; }
  body { padding-bottom: 0; font-size: 11pt; }
  .hero__panel, .cta-band, .panel--dark { background: #fff !important; color: #000 !important; box-shadow: none; }
}
