/* ============================================================
   RENOVEXBAU MULTISERVICE — Design System
   ============================================================ */

@import url('../fonts/fonts.css');

:root {
  /* Brand — extracted from logo */
  --navy-900: #001A33;
  --navy-800: #002B52;
  --navy-700: #003C6E;
  --navy-600: #004F8C;
  --orange-600: #C25800;
  --orange-500: #E56A00;
  --orange-400: #F07C1E;

  /* Neutrals */
  --ink: #12181F;
  --ink-2: #2B343E;
  --muted: #5C6773;
  --muted-2: #8A939E;
  --line: #E2E6EB;
  --line-2: #EDF0F3;
  --surface: #FFFFFF;
  --surface-2: #F7F9FB;
  --surface-3: #EFF3F7;

  /* Type */
  --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1.02rem;
  --text-lg: 1.16rem;
  --text-xl: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  --text-2xl: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  --text-3xl: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  --text-hero: clamp(2.4rem, 1.3rem + 4.4vw, 4.6rem);

  /* Space */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(0,26,51,.06), 0 2px 8px rgba(0,26,51,.05);
  --shadow-md: 0 4px 14px rgba(0,26,51,.09), 0 12px 34px rgba(0,26,51,.07);
  --shadow-lg: 0 10px 30px rgba(0,26,51,.12), 0 30px 70px rgba(0,26,51,.10);

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--orange-500); color: #fff; }
:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--surface-2); }
.section--navy { background: var(--navy-900); color: #C9D6E4; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; background: var(--orange-500); flex: none;
}
.section--navy .eyebrow { color: var(--orange-400); }

.h-sec { font-size: var(--text-2xl); }
.lead { font-size: var(--text-lg); color: var(--muted); max-width: 58ch; }
.section--navy .lead { color: #9FB3C8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 0.92rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 2px 10px rgba(229,106,0,.28); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 6px 20px rgba(229,106,0,.34); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--outline { border-color: var(--line); color: var(--navy-800); background: #fff; }
.btn--outline:hover { border-color: var(--navy-800); }
.btn--lg { padding: 1.08rem 2rem; font-size: var(--text-base); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; gap: var(--sp-5);
}
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 50px; width: auto; }
@media (max-width: 480px) { .brand img { height: 40px; } .header__bar { height: 70px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: var(--sp-5); }
.nav__links { display: flex; gap: clamp(1rem, 2vw, 1.9rem); }
.nav__links a {
  text-decoration: none; font-size: var(--text-sm); font-weight: 500;
  color: var(--ink-2); padding: .4rem 0; position: relative;
  transition: color .16s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--orange-500); transition: right .25s ease;
}
.nav__links a:hover { color: var(--navy-800); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--navy-900); font-weight: 700; }

.nav__cta { display: flex; align-items: center; gap: var(--sp-4); }
.nav__tel {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-base);
  color: var(--navy-900); text-decoration: none; letter-spacing: -0.01em;
}
.nav__tel svg { color: var(--orange-500); flex: none; }
.nav__tel:hover { color: var(--orange-600); }

.burger {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  width: 44px; height: 44px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; color: var(--navy-900);
}
@media (max-width: 960px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: var(--sp-4) var(--gutter) var(--sp-6);
    transform: translateY(-140%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto; margin: 0;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__links a { padding: .95rem 0; border-bottom: 1px solid var(--line-2); font-size: var(--text-lg); }
  .nav__links a::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: var(--sp-5); gap: var(--sp-3); }
  .nav__tel { justify-content: center; font-size: var(--text-lg); }
  .burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .52; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,20,40,.96) 0%, rgba(0,26,51,.86) 40%, rgba(0,35,68,.5) 72%, rgba(0,43,82,.34) 100%);
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin-inline: auto;
  padding: clamp(4rem, 9vw, 8.5rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
}
.hero__slogan {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-400);
  border: 1px solid rgba(240,124,30,.4); border-radius: 100px;
  padding: .45rem 1.05rem; margin-bottom: var(--sp-5);
}
.hero h1 { color: #fff; font-size: var(--text-hero); max-width: 19ch; }
.hero h1 em { font-style: normal; color: var(--orange-400); }
.hero__text { margin-top: var(--sp-5); font-size: var(--text-lg); color: #B8CADC; max-width: 54ch; }
.hero__actions { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__badges {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  overflow: hidden;
}
.hero__badge {
  background: rgba(0,26,51,.5); padding: 1.15rem 1.25rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: var(--text-sm); font-weight: 700; color: #DCE7F2; letter-spacing: -.005em;
}
.hero__badge svg { color: var(--orange-400); flex: none; }

/* ---------- Page header (sub pages) ---------- */
.pagehead { background: var(--navy-900); color: #A9BFD4; padding-block: clamp(2.8rem, 6vw, 4.8rem); }
.pagehead h1 { color: #fff; font-size: var(--text-3xl); }
.pagehead p { margin-top: var(--sp-4); font-size: var(--text-lg); color: #9FB3C8; max-width: 62ch; }
.crumb { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--orange-400); font-weight: 700; margin-bottom: var(--sp-4); }
.crumb a { text-decoration: none; color: inherit; opacity: .75; }
.crumb a:hover { opacity: 1; }

/* ---------- Service cards ---------- */
.grid-svc {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  margin-top: var(--sp-7);
}
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc__img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-3); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.svc__body h3 { font-size: var(--text-lg); }
.svc__body p { font-size: var(--text-sm); color: var(--muted); }
.svc__list { display: flex; flex-direction: column; gap: .35rem; margin-top: auto; padding-top: var(--sp-2); }
.svc__list li { font-size: var(--text-sm); color: var(--ink-2); display: flex; gap: .55rem; align-items: flex-start; }
.svc__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500); flex: none; margin-top: .6em; }

/* ---------- Feature list / 2-col ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide-l { grid-template-columns: 1.15fr .85fr; } }
.split__media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%;
  max-height: 580px; margin-inline: auto;
}

.checklist { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
.checklist li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.checklist .ic {
  flex: none; width: 34px; height: 34px; border-radius: var(--radius);
  background: rgba(229,106,0,.1); color: var(--orange-600);
  display: grid; place-items: center;
}
.section--navy .checklist .ic { background: rgba(240,124,30,.16); color: var(--orange-400); }
.checklist strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: var(--text-base); letter-spacing: -.01em; }
.section--navy .checklist strong { color: #fff; }
.checklist span.d { font-size: var(--text-sm); color: var(--muted); }
.section--navy .checklist span.d { color: #93A8BE; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); margin-top: var(--sp-7); counter-reset: s; list-style: none; padding: 0; }
.step { padding: var(--sp-5); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; }
.step::before {
  counter-increment: s; content: counter(s,decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem;
  color: var(--surface-3); line-height: 1; display: block; margin-bottom: var(--sp-3);
}
.step h3 { font-size: var(--text-base); margin-bottom: .45rem; }
.step p { font-size: var(--text-sm); color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: var(--sp-5); margin-top: var(--sp-6); }
.stat__v { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); color: var(--orange-400); line-height: 1; }
.stat__l { font-size: var(--text-sm); color: #93A8BE; margin-top: .45rem; }

/* ---------- Region pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--sp-5); }
.pill {
  font-size: var(--text-sm); font-weight: 500; padding: .42rem 1rem;
  border: 1px solid var(--line); border-radius: 100px; color: var(--ink-2); background: #fff;
}
.section--navy .pill { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #C9D6E4; }

/* ---------- Gallery ---------- */
.gal { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); margin-top: var(--sp-6); }
.gal__item {
  position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
  background: var(--surface-3); border: 0; padding: 0; cursor: pointer; display: block;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gal__item:hover img { transform: scale(1.06); }
.gal__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: .9rem 1rem .8rem;
  background: linear-gradient(transparent, rgba(0,26,51,.88));
  color: #fff; font-size: var(--text-sm); font-weight: 500; text-align: left;
  opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease;
}
.gal__item:hover figcaption, .gal__item:focus-visible figcaption { opacity: 1; transform: none; }

.gal__filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--sp-6); }
.gal__filters button {
  font-size: var(--text-sm); font-weight: 600; padding: .45rem 1.05rem;
  border: 1px solid var(--line); background: #fff; border-radius: 100px;
  color: var(--muted); cursor: pointer; transition: all .16s ease;
}
.gal__filters button:hover { color: var(--navy-800); border-color: var(--navy-800); }
.gal__filters button[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.gal__empty {
  margin-top: var(--sp-6); padding: clamp(2rem,5vw,3.5rem);
  border: 1.5px dashed var(--line); border-radius: var(--radius-lg);
  background: var(--surface-2); text-align: center;
}
.gal__empty h3 { font-size: var(--text-lg); margin-bottom: var(--sp-3); }
.gal__empty p { font-size: var(--text-sm); color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(0,12,24,.94); display: none; place-items: center; padding: clamp(1rem,4vw,3rem); }
.lb[data-open="true"] { display: grid; }
.lb img { max-width: 100%; max-height: 82vh; border-radius: var(--radius); object-fit: contain; }
.lb__cap { color: #C9D6E4; font-size: var(--text-sm); text-align: center; margin-top: var(--sp-4); }
.lb__x, .lb__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .16s ease;
}
.lb__x:hover, .lb__nav:hover { background: rgba(255,255,255,.22); }
.lb__x { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lb__nav[data-dir="prev"] { left: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lb__nav[data-dir="next"] { right: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem,5vw,4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }

.cinfo { display: grid; gap: var(--sp-5); }
.cinfo__row { display: flex; gap: var(--sp-4); align-items: flex-start; }
.cinfo__ic { flex: none; width: 42px; height: 42px; border-radius: var(--radius); background: rgba(0,43,82,.06); color: var(--navy-800); display: grid; place-items: center; }
.cinfo__k { font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--muted-2); }
.cinfo__v { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--navy-900); letter-spacing: -.015em; }
.cinfo__v a { text-decoration: none; }
.cinfo__v a:hover { color: var(--orange-600); }
.cinfo__s { font-size: var(--text-sm); color: var(--muted); }

.form { display: grid; gap: var(--sp-4); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); }
.form__row { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--navy-900); }
.field label .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--text-sm); padding: .8rem .95rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2);
  color: var(--ink); transition: border-color .16s ease, background .16s ease;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--navy-600); outline: none; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--text-xs); color: var(--muted); line-height: 1.55; }
.consent input { width: 17px; height: 17px; flex: none; margin-top: .15em; accent-color: var(--orange-500); }
.consent a { color: var(--navy-700); }
.form__note { font-size: var(--text-xs); color: var(--muted-2); }

/* ---------- CTA band ---------- */
.ctaband { background: var(--navy-800); color: #fff; }
.ctaband__in { display: grid; gap: var(--sp-5); align-items: center; padding-block: clamp(2.5rem,5vw,4rem); }
@media (min-width: 860px) { .ctaband__in { grid-template-columns: 1fr auto; gap: var(--sp-7); } }
.ctaband h2 { color: #fff; font-size: var(--text-xl); }
.ctaband p { color: #A9C2DA; font-size: var(--text-sm); margin-top: .6rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: var(--sp-6); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative; list-style: none;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-900);
  font-size: var(--text-base); letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: .5rem; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid var(--orange-500); border-bottom: 2px solid var(--orange-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .a { padding: 0 var(--sp-6) 1.35rem 0; font-size: var(--text-sm); color: var(--muted); max-width: 72ch; }

/* ---------- Prose (Impressum / Datenschutz) ---------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: var(--text-xl); margin-top: var(--sp-7); margin-bottom: var(--sp-4); }
.prose h3 { font-size: var(--text-base); margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.prose p, .prose ul { font-size: var(--text-sm); color: var(--ink-2); margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--navy-700); }
.dl { display: grid; gap: .3rem; font-size: var(--text-sm); }
.dl div { display: grid; grid-template-columns: minmax(130px, 190px) 1fr; gap: var(--sp-4); padding: .55rem 0; border-bottom: 1px solid var(--line-2); }
.dl dt { color: var(--muted); }
.dl dd { margin: 0; font-weight: 600; color: var(--navy-900); }
@media (max-width: 560px) { .dl div { grid-template-columns: 1fr; gap: .15rem; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #8FA6BD; padding-top: clamp(3rem,6vw,4.5rem); font-size: var(--text-sm); }
.footer__top { display: grid; gap: var(--sp-6); padding-bottom: var(--sp-7); }
@media (min-width: 780px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-6); } }
.footer h4 { color: #fff; font-size: var(--text-sm); letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--sp-4); font-weight: 700; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: .6rem; }
.footer__logo {
  display: inline-block; background: #fff; border-radius: var(--radius);
  padding: .85rem 1.1rem; margin-bottom: var(--sp-5);
}
.footer__logo img { height: 48px; width: auto; }
.footer__about { max-width: 34ch; line-height: 1.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--text-xs); color: #6E85A0;
}
.footer__bottom nav { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; inset: auto 0 0 0; z-index: 90;
    background: var(--navy-900); box-shadow: 0 -4px 18px rgba(0,0,0,.18);
  }
  .callbar a {
    padding: .95rem; text-align: center; text-decoration: none;
    font-weight: 700; font-size: var(--text-sm); color: #fff;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
  }
  .callbar a:first-child { background: var(--orange-500); }
  body { padding-bottom: 58px; }
}

/* ---------- WhatsApp ---------- */
:root { --wa: #25D366; --wa-dark: #128C7E; }
.cinfo__ic--wa { background: rgba(37,211,102,.14) !important; color: var(--wa-dark) !important; }
.wafab {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.15rem; border-radius: 999px;
  background: var(--wa); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  box-shadow: 0 10px 26px rgba(18,140,126,.38);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wafab:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 32px rgba(18,140,126,.48); }
.wafab svg { flex: none; width: 21px; height: 21px; }
@media (max-width: 720px) { .wafab { display: none; } }
@media (max-width: 720px) {
  .callbar--3 { grid-template-columns: 1fr 1fr 1fr; }
  .callbar__wa { background: var(--wa-dark); }
  .callbar--3 a { font-size: .82rem; padding: .95rem .4rem; gap: .35rem; }
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 620px) {
  .btn-row, .hero__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .btn-row .btn, .hero__actions .btn { width: 100%; }
  .split__media img { max-height: 430px; }
  .stat__num { font-size: var(--text-2xl); }
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Login gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 9999; background: var(--navy-900);
  display: grid; place-items: center; padding: var(--gutter);
}
.gate__card {
  width: 100%; max-width: 400px; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem); box-shadow: var(--shadow-lg);
}
.gate__card img { height: 46px; width: auto; margin-bottom: var(--sp-5); }
.gate__card h1 { font-size: var(--text-xl); margin-bottom: .5rem; }
.gate__card p { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--sp-5); }
.gate__err { display: none; font-size: var(--text-sm); color: #B4231A; background: #FDECEA; border: 1px solid #F5C6C2; border-radius: var(--radius); padding: .65rem .85rem; margin-bottom: var(--sp-4); }
.gate__err[data-show="true"] { display: block; }
.gate .btn { width: 100%; }
html.gated body > *:not(.gate) { display: none !important; }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
