/* ═══════════════════════════════════════════════════════════
   INNOV — MODELO 1 · Lamp Dark Premium
   Hero: vanilla port of motion/react "Lamp" component
   Paleta: slate-950 + cyan (Innov #0078a0)
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #020617;            /* slate-950 */
  --bg-2:      #0a1322;
  --bg-3:      #0f1c2e;
  --border:    rgba(148,163,184,.12);
  --border-2:  rgba(148,163,184,.22);
  --text:      #e2e8f0;
  --text-2:    #cbd5e1;
  --muted:     #94a3b8;
  --innov:     #0078a0;            /* logo Innov */
  --cyan:      #22d3ee;            /* cyan-400 — lamp glow */
  --cyan-2:    #06b6d4;            /* cyan-500 */
  --cyan-3:    #0891b2;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:     'Instrument Serif', Georgia, serif;
  --max:       1240px;
  --pad:       clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); font-weight: 500;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(36px, 6vw, 76px); font-weight: 500; }
h2 { font-size: clamp(28px, 4vw, 50px); font-weight: 500; }
h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; }
em { font-style: italic; font-family: var(--serif); color: #cbd5e1; font-weight: 400; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 80px); text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { margin-bottom: 14px; }
.section__head p { color: var(--text-2); font-size: 16px; max-width: 580px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cyan-2) 0%, var(--cyan-3) 100%);
  color: #04101a; box-shadow: 0 8px 24px rgba(34,211,238,.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(34,211,238,.45); }
.btn--ghost {
  background: rgba(148,163,184,.06); border-color: var(--border-2);
  color: var(--text); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(148,163,184,.12); border-color: var(--cyan); }
.btn--xl { padding: 16px 32px; font-size: 15px; }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px var(--pad); transition: all .3s; }
.nav.is-scrolled { background: rgba(2,6,23,.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 14px var(--pad); }
.nav__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.nav__brand { justify-self: start; }
.nav__brand img { height: 38px; width: auto; }
.nav__menu { display: flex; gap: 36px; font-size: 14px; justify-content: center; }
.nav__menu a { color: var(--text-2); position: relative; font-weight: 500; }
.nav__menu a:hover { color: var(--cyan); }
.nav__menu a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--cyan); transition: width .25s; }
.nav__menu a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 13.5px; justify-self: end; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); }

/* ═══════════════════════════════════════════════════════════
   LAMP HERO — vanilla port of motion/react Lamp component
   Conic gradients + masks + animation
   ═══════════════════════════════════════════════════════════ */

.lamp {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.lamp__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleY(1.25);
  z-index: 0;
}

/* Conic light cones (left/right) */
.lamp__cone {
  position: absolute;
  inset: auto;
  height: 16rem;
  width: 32rem;
  color: #fff;
  overflow: visible;
  opacity: 0;
  z-index: 10;
  animation: lamp-cone-in 1.1s .3s cubic-bezier(.2,.6,.2,1) forwards;
}
.lamp__cone--left {
  right: 50%;
  background-image: conic-gradient(
    from 70deg at center top,
    var(--cyan-2) 0%,
    transparent 50%,
    transparent 100%
  );
}
.lamp__cone--right {
  left: 50%;
  background-image: conic-gradient(
    from 290deg at center top,
    transparent 0%,
    transparent 50%,
    var(--cyan-2) 100%
  );
}
@keyframes lamp-cone-in {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* The 4 inner masks that carve the cone into a beam (matches the original) */
.lamp__cone-mask--bottom {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 10rem;
  background: var(--bg);
  z-index: 20;
  -webkit-mask-image: linear-gradient(to top, white, transparent);
          mask-image: linear-gradient(to top, white, transparent);
}
.lamp__cone--left  .lamp__cone-mask--side-l {
  position: absolute;
  left: 0; bottom: 0;
  width: 10rem;
  height: 100%;
  background: var(--bg);
  z-index: 20;
  -webkit-mask-image: linear-gradient(to right, white, transparent);
          mask-image: linear-gradient(to right, white, transparent);
}
.lamp__cone--right .lamp__cone-mask--side-r {
  position: absolute;
  right: 0; bottom: 0;
  width: 10rem;
  height: 100%;
  background: var(--bg);
  z-index: 20;
  -webkit-mask-image: linear-gradient(to left, white, transparent);
          mask-image: linear-gradient(to left, white, transparent);
}

/* Big horizontal blur bar that obscures the bottom of cones */
.lamp__glow-bar {
  position: absolute;
  top: 50%; left: 0;
  height: 12rem;
  width: 100%;
  transform: translateY(3rem) scaleX(1.5);
  background: var(--bg);
  filter: blur(40px);
  z-index: 1;
}

/* Soft backdrop blur layer (matches z-50 of original) */
.lamp__blur-overlay {
  position: absolute;
  top: 50%; left: 0;
  height: 12rem;
  width: 100%;
  background: transparent;
  opacity: .1;
  backdrop-filter: blur(20px);
  z-index: 50;
}

/* The bright lamp orb (large diffused glow) */
.lamp__orb {
  position: absolute;
  inset: auto;
  height: 10rem;
  width: 30rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--cyan-2);
  opacity: .65;
  filter: blur(70px);
  z-index: 50;
}

/* The smaller, tighter glow that grows on enter */
.lamp__orb-soft {
  position: absolute;
  inset: auto;
  height: 10rem;
  width: 8rem;
  transform: translateY(-6rem);
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(40px);
  z-index: 30;
  animation: lamp-grow-soft 1.1s .3s cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes lamp-grow-soft {
  from { width: 8rem; opacity: .6; }
  to   { width: 18rem; opacity: 1; }
}

/* The thin laser line */
.lamp__line {
  position: absolute;
  inset: auto;
  height: 2px;
  width: 15rem;
  transform: translateY(-7rem);
  background: var(--cyan);
  z-index: 50;
  box-shadow: 0 0 28px var(--cyan), 0 0 80px var(--cyan-2);
  animation: lamp-line-in 1.1s .3s cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes lamp-line-in {
  from { width: 15rem; opacity: .5; }
  to   { width: 30rem; opacity: 1; }
}

/* Top cover hides the top of the cones — creates the "lamp top" silhouette */
.lamp__top-cover {
  position: absolute;
  inset: auto;
  height: 11rem;
  width: 100%;
  transform: translateY(-12.5rem);
  background: var(--bg);
  z-index: 40;
}

/* Content sits below the lamp */
.lamp__content {
  position: relative;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad);
  transform: translateY(-9rem);
  max-width: 920px;
  margin: 0 auto;
}
.lamp__content .eyebrow { margin-bottom: 18px; }
.lamp__title {
  background: linear-gradient(180deg, #ffffff 0%, #cbe9f3 55%, #7ec5dc 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 14px 0 6px;
  margin: 4px 0 18px;
  text-shadow: 0 0 60px rgba(34, 211, 238, .3);
  animation: lamp-title-in 1.4s .5s cubic-bezier(.2,.6,.2,1) backwards;
}
.lamp__title em {
  background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-3) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
@keyframes lamp-title-in {
  from { opacity: .5; transform: translateY(100px); }
  to   { opacity: 1; transform: none; }
}
.lamp__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 28px;
  animation: lamp-fade-up 1.4s .8s cubic-bezier(.2,.6,.2,1) backwards;
}
@keyframes lamp-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.lamp__cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
  animation: lamp-fade-up 1.4s 1s cubic-bezier(.2,.6,.2,1) backwards;
}
.lamp__chips {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  animation: lamp-fade-up 1.4s 1.2s cubic-bezier(.2,.6,.2,1) backwards;
}
.lamp__chips span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
}

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust { padding: 60px var(--pad); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(10,19,34,.6); }
.trust__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trust__item { flex: 1; min-width: 160px; text-align: center; }
.trust__num { font-size: clamp(38px, 5vw, 56px); font-weight: 600; color: var(--cyan); line-height: 1; margin-bottom: 8px; letter-spacing: -.03em; }
.trust__label { font-size: 13.5px; color: var(--text-2); line-height: 1.4; }
.trust__divider { width: 1px; height: 60px; background: linear-gradient(180deg, transparent, var(--border-2), transparent); }

/* ─── BENTO SERVIÇOS ──────────────────────────────────────── */
.services { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: var(--max); margin: 0 auto; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento__card {
  background: linear-gradient(165deg, rgba(15,28,46,.7) 0%, rgba(10,19,34,.9) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.6,.2,1);
}
.bento__card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(34,211,238,.10), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.bento__card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,.3); }
.bento__card:hover::before { opacity: 1; }

.b-1 { grid-column: span 6; background: linear-gradient(135deg, rgba(8,145,178,.16) 0%, rgba(10,19,34,.9) 60%); border-color: rgba(34,211,238,.18); }
.b-2, .b-3 { grid-column: span 3; }
.b-4, .b-5 { grid-column: span 3; }

.bento__num { position: absolute; top: 22px; right: 26px; font-size: 32px; font-weight: 300; color: rgba(34,211,238,.22); }
.bento__icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(8,145,178,.08)); border: 1px solid rgba(34,211,238,.22); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.bento__icon svg { width: 26px; height: 26px; }
.bento__card h3 { margin-bottom: 10px; }
.bento__card p { color: var(--text-2); font-size: 14.5px; margin-bottom: 14px; }
.bento__card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.bento__card ul li { font-size: 13px; color: var(--muted); padding-left: 16px; position: relative; }
.bento__card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--cyan); }

/* ─── DIFERENCIAIS ────────────────────────────────────────── */
.diff { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: var(--max); margin: 0 auto; }
.diff__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.diff__card {
  padding: 32px;
  background: rgba(10,19,34,.55);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all .35s cubic-bezier(.2,.6,.2,1);
}
.diff__card:hover { border-color: rgba(34,211,238,.3); transform: translateY(-2px); }
.diff__ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(34,211,238,.1); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.diff__ic svg { width: 24px; height: 24px; }
.diff__card h3 { margin-bottom: 10px; }
.diff__card p { color: var(--text-2); font-size: 15px; }

/* ─── CLIENTES / LOGOS ────────────────────────────────────── */
.clientes { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: var(--max); margin: 0 auto; }
.logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.logo-card {
  padding: 18px 16px;
  background: rgba(10,19,34,.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
  transition: all .25s;
}
.logo-card:hover { border-color: rgba(34,211,238,.3); background: rgba(34,211,238,.05); color: var(--text); }
.clientes__obras { text-align: center; margin-top: 32px; color: var(--text-2); font-size: 15px; }
.clientes__obras strong { color: var(--cyan); }

/* ─── DEPOIMENTOS ─────────────────────────────────────────── */
.testi { padding: clamp(80px, 12vw, 140px) 0; }
.testi .section__head { padding: 0 var(--pad); }
.testi__rail {
  display: flex; gap: 20px;
  overflow-x: auto; padding: 16px var(--pad) 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testi__rail::-webkit-scrollbar { display: none; }
.testi__card {
  flex: 0 0 clamp(280px, 38vw, 420px);
  min-height: 280px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(15,28,46,.9), rgba(10,19,34,.95));
  border: 1px solid var(--border-2);
  border-radius: 24px;
  scroll-snap-align: center;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .35s;
}
.testi__card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,.3); }
.testi__q { color: var(--cyan); opacity: .6; margin-bottom: 14px; }
.testi__card p { font-size: 16.5px; line-height: 1.55; color: var(--text); margin-bottom: 22px; font-weight: 400; }
.testi__person { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-2), var(--innov)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #04101a; font-size: 14px; flex-shrink: 0; }
.testi__person strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.testi__person span { font-size: 12.5px; color: var(--muted); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { padding: clamp(80px, 12vw, 140px) var(--pad); max-width: 900px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: rgba(10,19,34,.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open] { border-color: rgba(34,211,238,.3); background: rgba(15,28,46,.7); }
.faq__item summary {
  padding: 22px 26px;
  font-size: 15.5px; font-weight: 500;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan); }
.faq__icon { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border-2); position: relative; flex-shrink: 0; transition: all .3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1.5px; background: var(--cyan); transform: translate(-50%, -50%); transition: transform .3s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { border-color: var(--cyan); background: rgba(34,211,238,.12); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq__body { padding: 0 26px 22px; color: var(--text-2); font-size: 15px; line-height: 1.7; }

/* ─── CTA FINAL ───────────────────────────────────────────── */
.cta { padding: clamp(80px, 12vw, 140px) var(--pad); }
.cta__inner {
  max-width: 900px; margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  background: linear-gradient(160deg, rgba(15,28,46,.9), rgba(2,6,23,.95));
  border: 1px solid var(--border-2);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(34,211,238,.3), transparent 50%);
  border-radius: 28px;
  z-index: -1;
}
.cta__inner .eyebrow { margin-bottom: 18px; }
.cta__inner h2 { margin-bottom: 16px; }
.cta__inner p { color: var(--text-2); font-size: 17px; margin-bottom: 32px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--border); background: rgba(2,6,23,.95); padding: 56px var(--pad) 24px; }
.foot__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.foot__brand img { height: 36px; margin-bottom: 14px; }
.foot__brand p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.foot__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.foot__cols > div { display: flex; flex-direction: column; gap: 8px; }
.foot__cols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.foot__cols a { font-size: 13.5px; color: var(--text-2); }
.foot__cols a:hover { color: var(--cyan); }
.foot__bottom { max-width: var(--max); margin: 36px auto 0; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px 14px 16px; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border-radius: 999px; box-shadow: 0 14px 36px rgba(37,211,102,.36); font-size: 14px; font-weight: 600; transition: all .25s; }
.wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 20px 48px rgba(37,211,102,.5); }
.wa__pulse { position: absolute; inset: 0; border-radius: 999px; border: 2px solid #25D366; animation: pulse 2s ease-out infinite; pointer-events: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-1 { grid-column: span 2; }
  .b-2, .b-3, .b-4, .b-5 { grid-column: span 1; }
  .diff__grid { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; gap: 36px; }
  .lamp__cone { width: 22rem; height: 12rem; }
  .lamp__orb { width: 22rem; }
  .lamp__line { width: 22rem; }
  .lamp__content { transform: translateY(-9rem); }
}
@media (max-width: 640px) {
  .trust__divider { display: none; }
  .trust__inner { gap: 24px; }
  .trust__item { flex: 1 1 calc(50% - 12px); min-width: 130px; }
  .bento { grid-template-columns: 1fr; }
  .b-1, .b-2, .b-3, .b-4, .b-5 { grid-column: span 1; }
  .bento__card { padding: 26px; }
  .foot__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .foot__cols { grid-template-columns: 1fr; }
  .wa { padding: 12px 16px 12px 14px; bottom: 16px; right: 16px; }
  .wa span:last-child { display: none; }
  .testi__card { flex-basis: 86%; padding: 26px; }
  .lamp__cone { width: 16rem; height: 9rem; }
  .lamp__orb { width: 16rem; height: 7rem; }
  .lamp__line { width: 16rem; }
  .lamp__top-cover { transform: translateY(-9.5rem); height: 8rem; }
  .lamp__content { transform: translateY(-7rem); padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
