/* ============================================================
   FIXIT Leiden — Main Stylesheet
   ============================================================ */

:root {
  --ink:        #0e2c47;
  --ink-soft:   #33485d;
  --paper:      #f3f6fa;
  --paper-2:    #e7eef5;
  --orange:     #f15a22;
  --orange-deep:#d8480f;
  --blue:       #1f74b8;
  --line:       #dde5ee;
  --muted:      #6f8298;
  --white:      #ffffff;
  --radius:     18px;
  --shadow:     0 24px 60px -28px rgba(14,44,71,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: "Hanken Grotesk", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.02;
}
a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(242,90,27,.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-deep);
  box-shadow: 0 16px 30px -12px rgba(242,90,27,.8);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-wa { background: #1faa53; color: #fff; }
.btn-wa:hover { background: #168a43; transform: translateY(-2px); }

/* ── Utility bar ─────────────────────────────── */
.utility { background: var(--ink); color: #bccadb; font-size: 13.5px; }
.utility .wrap {
  display: flex; justify-content: space-between; align-items: center;
  height: 42px; gap: 18px;
}
.utility a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.utility a:hover { color: #fff; }
.utility svg { width: 15px; height: 15px; }
.utility .u-right { display: flex; gap: 22px; }
.utility .u-left { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(242,90,27,.2); }
@media(max-width:780px) { .utility .u-right span:not(.tel) { display: none; } }

/* ── Brand row ───────────────────────────────── */
.brandbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.brandbar .wrap {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
  padding-top: 18px; padding-bottom: 18px;
}
.logo { justify-self: center; display: inline-flex; align-items: center; line-height: 0; }
.logo-img { height: 104px; width: auto; display: block; }
.brand-side { display: flex; align-items: center; }
.brand-end { justify-self: end; }
.socials-h { gap: 10px; }
.socials-h a {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.socials-h a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.socials-h svg { width: 18px; height: 18px; }
.phone-chip { display: flex; align-items: center; gap: 12px; }
.phone-chip .pic {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--orange); flex-shrink: 0;
}
.phone-chip .pic svg { width: 22px; height: 22px; }
.phone-chip .lbl { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.phone-chip b { display: block; font-family: "Archivo"; font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.01em; }
.phone-chip:hover b { color: var(--orange); }

/* ── Lang switcher ───────────────────────────── */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65);
}
.lang-switcher .lang-active { color: #fff; }
.lang-switcher .lang-sep { color: rgba(255,255,255,.3); }
.lang-switcher a { color: rgba(255,255,255,.65); transition: color .15s; }
.lang-switcher a:hover { color: #fff; }

/* ── Sticky nav ──────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  box-shadow: 0 10px 26px -18px rgba(14,44,71,.7);
}
.nav .wrap {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 56px;
}
.nav-side { display: flex; align-items: center; }
nav.links {
  grid-column: 2; justify-self: center;
  display: flex; gap: 32px; align-items: center;
  font-weight: 600; font-size: 15px;
}
nav.links a {
  position: relative; padding: 6px 0;
  color: rgba(255,255,255,.82);
}
nav.links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width .22s;
}
nav.links a:hover { color: #fff; }
nav.links a:hover::after { width: 100%; }
.nav-end { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 14px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; }
section[id] { scroll-margin-top: 72px; }

/* ── Mobile menu ─────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--ink); z-index: 200; padding: 24px 28px;
  display: flex; flex-direction: column;
  transition: right .3s ease;
  box-shadow: -8px 0 40px rgba(14,44,71,.4);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  align-self: flex-end; background: transparent; border: 0; cursor: pointer;
  color: rgba(255,255,255,.7); padding: 8px; margin-bottom: 20px;
  transition: color .15s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-close svg { width: 26px; height: 26px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  color: rgba(255,255,255,.8); font-size: 17px; font-weight: 600;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s;
}
.mobile-menu nav a:hover { color: #fff; }
.mobile-lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.65);
  margin-top: 22px;
}
.mobile-lang .lang-active { color: #fff; }
.mobile-lang .lang-sep { color: rgba(255,255,255,.3); }
.mobile-lang a { color: rgba(255,255,255,.65); transition: color .15s; }
.mobile-lang a:hover { color: #fff; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(14,44,71,.55); backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

@media(max-width:920px) {
  nav.links { display: none; }
  .burger { display: flex; }
  .socials-h { display: none; }
  .logo-img { height: 84px; }
  .nav-side { display: none; }
}
@media(max-width:560px) {
  .phone-chip { display: none; }
  .brandbar .wrap { grid-template-columns: 1fr; justify-items: center; }
  .nav-end .btn { padding: 8px 14px; font-size: 13px; }
  .logo-img { height: 66px; }
}

/* ── Hero ────────────────────────────────────── */
.hero { position: relative; padding: 74px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(242,90,27,.14), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper));
}
.hero .grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(600px 400px at 75% 30%, #000, transparent 75%);
          mask-image: radial-gradient(600px 400px at 75% 30%, #000, transparent 75%);
}
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 50px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper-2); border: 1px solid var(--line);
  color: var(--ink-soft); font-weight: 700; font-size: 13px;
  padding: 7px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.eyebrow .dot { box-shadow: 0 0 0 4px rgba(242,90,27,.18); }
h1.hero-title { font-size: clamp(40px, 5.6vw, 66px); margin: 22px 0 18px; font-weight: 900; }
h1.hero-title em {
  font-style: normal; color: var(--orange); position: relative; white-space: nowrap;
}
h1.hero-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 11px; background: rgba(242,90,27,.18); z-index: -1; border-radius: 3px;
}
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.trust { display: grid; grid-template-columns: repeat(3,1fr); align-items: start; }
.trust .item { display: flex; flex-direction: column; padding: 0 20px; min-width: 0; }
.trust .item:first-child { padding-left: 0; }
.trust .item + .item { border-left: 1px solid var(--line); }
.trust .num { font-family: "Archivo"; font-weight: 900; font-size: 26px; line-height: 1; color: var(--ink); white-space: nowrap; }
.trust .lbl { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }

.hero-photo { position: relative; }
.hero-photo .ph {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/4.4; background: var(--paper-2);
}
.hero-photo .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,44,71,.5));
}
.hero-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(14,44,71,.8); backdrop-filter: blur(4px);
  color: #fff; font-weight: 700; font-size: 12.5px;
  padding: 8px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-badge {
  position: absolute; left: -20px; bottom: 28px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 15px 18px;
  box-shadow: 0 20px 44px -22px rgba(14,44,71,.6);
  display: flex; align-items: center; gap: 13px; max-width: 295px;
}
.hero-badge .bic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange); display: grid; place-items: center;
  flex-shrink: 0; color: #fff;
}
.hero-badge .bic svg { width: 23px; height: 23px; }
.hero-badge b { display: block; font-family: "Archivo"; font-weight: 800; font-size: 15.5px; color: var(--ink); line-height: 1.15; }
.hero-badge span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }

@media(max-width:920px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { order: 2; }
  .hero-photo .ph { aspect-ratio: 16/10; }
  .hero-badge { left: 14px; }
}
@media(max-width:520px) {
  .trust .item { padding: 0 12px; }
  .trust .num { font-size: 22px; }
  .trust .lbl { font-size: 11.5px; }
  .hero-photo .ph::after { display: none; }
  .hero-badge { position: static; max-width: none; margin-top: 14px; }
}

/* ── Sections (shared) ───────────────────────── */
.section { padding: 84px 0; }
.sec-head { max-width: 620px; margin-bottom: 46px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 17px; }

/* ── Pillars ─────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pillar {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0;
  height: 4px; width: 0; background: var(--orange);
  transition: width .25s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.pillar:hover::before { width: 100%; }
.pillar .pic {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--paper-2); display: grid; place-items: center;
  margin-bottom: 18px; color: var(--orange);
  transition: background .2s, color .2s;
}
.pillar:hover .pic { background: var(--orange); color: #fff; }
.pillar .pic svg { width: 25px; height: 25px; }
.pillar h3 { font-size: 20px; margin-bottom: 7px; }
.pillar p { font-size: 14.5px; color: var(--muted); }
@media(max-width:920px) { .pillars { grid-template-columns: repeat(2,1fr); } }
@media(max-width:520px) { .pillars { grid-template-columns: 1fr; } }

/* ── Services ────────────────────────────────── */
.services { background: var(--ink); color: #fff; }
.services .sec-head h2 { color: #fff; }
.services .sec-head p { color: #9db3c7; }
.services .eyebrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #c6d4e2; }
.svc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; align-items: start; }
.svc {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px; transition: background .18s, border-color .18s; overflow: hidden;
}
.svc:hover { background: rgba(242,90,27,.1); border-color: rgba(242,90,27,.5); }
.svc.open { background: rgba(242,90,27,.12); border-color: var(--orange); }
.svc-head {
  width: 100%; display: flex; align-items: center; gap: 13px;
  background: none; border: 0; cursor: pointer;
  padding: 15px 16px; text-align: left; color: #fff; font-family: inherit;
}
.svc .si {
  width: 32px; height: 32px; flex-shrink: 0;
  color: var(--orange); display: grid; place-items: center; transition: color .18s;
}
.svc.open .si, .svc:hover .si { color: #fff; }
.svc .si svg { width: 22px; height: 22px; }
.svc-head .nm { font-size: 14.5px; font-weight: 600; flex: 1; }
.svc-head .plus {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative; transition: transform .28s ease; color: var(--orange);
}
.svc-head .plus::before,
.svc-head .plus::after {
  content: ""; position: absolute;
  background: currentColor; border-radius: 2px;
}
.svc-head .plus::before { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.svc-head .plus::after  { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.svc.open .plus { transform: rotate(135deg); }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.svc.open .svc-body { max-height: 160px; }
.svc-body p { padding: 0 16px 16px 61px; font-size: 13.5px; color: #9db3c7; }
@media(max-width:1024px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:680px)  { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:420px)  { .svc-grid { grid-template-columns: 1fr; } }

.honest {
  margin-top: 32px;
  background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 24px 26px;
  display: flex; gap: 18px; align-items: flex-start;
}
.honest .hi {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px;
  background: rgba(242,90,27,.16); display: grid; place-items: center; color: var(--orange);
}
.honest .hi svg { width: 22px; height: 22px; }
.honest p { color: #bccadb; font-size: 15px; }
.honest b { color: #fff; }

/* ── Process ─────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step {
  position: relative; padding: 30px 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
}
.step .n {
  font-family: "Archivo"; font-weight: 900; font-size: 46px;
  color: var(--paper-2); line-height: .8;
  position: absolute; top: 18px; right: 22px;
  -webkit-text-stroke: 1.5px var(--line);
}
.step .si {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step .si svg { width: 23px; height: 23px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
@media(max-width:820px) { .steps { grid-template-columns: 1fr; } }

/* ── Region ──────────────────────────────────── */
.region { background: var(--paper-2); }
.region .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.region .map {
  aspect-ratio: 4/3; border-radius: 22px; background: var(--ink);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.region .map .grid-bg {
  position: absolute; inset: 0; opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 32px 32px;
}
.region .map .pin { position: absolute; z-index: 2; }
.region .map .pin .b {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 6px rgba(242,90,27,.25);
}
.region .map .pin .lab {
  position: absolute; left: 20px; top: -5px;
  white-space: nowrap; color: #fff; font-size: 12.5px; font-weight: 600;
  background: rgba(0,0,0,.35); padding: 3px 9px; border-radius: 7px;
}
.ripple { animation: ripple 2.4s ease-out infinite; }
@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(242,90,27,.5); }
  100% { box-shadow: 0 0 0 26px rgba(242,90,27,0); }
}
.towns { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.towns span {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
@media(max-width:820px) { .region .wrap { grid-template-columns: 1fr; } }

/* ── Reviews ─────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.review .stars { color: var(--orange); display: flex; gap: 2px; margin-bottom: 14px; }
.review .stars svg { width: 18px; height: 18px; }
.review p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-family: "Archivo"; font-weight: 800; font-size: 16px;
}
.review .who b { display: block; font-size: 15px; }
.review .who span { font-size: 13px; color: var(--muted); }
@media(max-width:820px) { .reviews { grid-template-columns: 1fr; } }

/* ── CTA / Contact ───────────────────────────── */
.cta {
  position: relative; background: var(--ink); color: #fff;
  border-radius: 28px; overflow: hidden; padding: 54px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(242,90,27,.3), transparent 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.cta p { color: #bccadb; font-size: 16.5px; margin-bottom: 26px; }
.cta .ctc { display: grid; gap: 13px; }
.cta .ctc a {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 16px 18px;
  transition: background .18s, border-color .18s;
}
.cta .ctc a:hover { background: rgba(255,255,255,.1); border-color: var(--orange); }
.cta .ctc .ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--orange); display: grid; place-items: center; flex-shrink: 0;
}
.cta .ctc .ic svg { width: 21px; height: 21px; color: #fff; }
.cta .ctc b { display: block; font-size: 16px; }
.cta .ctc span { font-size: 13px; color: #89a0b6; }

/* ── Form ────────────────────────────────────── */
.form { background: var(--white); border-radius: 20px; padding: 28px; color: var(--ink); }
.form h3 { font-size: 21px; margin-bottom: 5px; }
.form .fsub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.form .field { margin-bottom: 15px; }
.form input, .form textarea, .form select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 12px 14px; font-family: inherit; font-size: 14.5px;
  background: var(--paper); color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--orange);
}
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
@media(max-width:920px) { .cta { grid-template-columns: 1fr; padding: 34px; } }
@media(max-width:560px) { .form .two { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────── */
footer { background: var(--ink); color: #89a0b6; padding: 60px 0 30px; }
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
footer .logo { color: #fff; margin-bottom: 14px; }
footer .blurb { font-size: 14.5px; max-width: 280px; }
footer h4 {
  color: #fff; font-family: "Archivo"; font-size: 14px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { font-size: 14.5px; transition: color .15s; }
footer ul a:hover { color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  color: #bccadb; transition: background .18s, color .18s, transform .18s;
}
.socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.logo-foot {
  display: inline-block; background: #fff;
  padding: 12px 16px; border-radius: 14px;
  margin-bottom: 16px; line-height: 0;
}
.logo-foot img { height: 56px; width: auto; display: block; }
@media(max-width:820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media(max-width:480px) { .foot-top { grid-template-columns: 1fr; } }

/* ── Floating WhatsApp ───────────────────────── */
.float-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1faa53; display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(31,170,83,.7);
  color: #fff; animation: bob 3s ease-in-out infinite;
}
.float-wa svg { width: 30px; height: 30px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Reveal animation ────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
