/* Zorton Electronics Uganda — styles */

:root {
  /* Brand — sampled from the ZEGS logo */
  --purple:      #4C1D4F;
  --purple-lt:   #6B2A6E;
  --purple-dk:   #331235;
  --purple-tint: #f3ecf4;
  --orange:      #E2732D;
  --flame:       #E84C26;
  --red:         #ED2C22;
  --orange-tint: #fdeee3;

  --brand-grad: linear-gradient(100deg, var(--red), var(--flame) 45%, var(--orange));
  --ring-grad:  linear-gradient(135deg, var(--purple-lt), var(--purple-dk));

  --ink:        #1c1220;
  --ink-soft:   #58505f;
  --ink-mute:   #7d7585;
  --line:       #e8e2ea;
  --bg:         #ffffff;
  --bg-alt:     #faf7fb;
  --accent:     var(--purple);
  --accent-dk:  var(--purple-dk);
  --accent-tint:var(--purple-tint);

  --wrap: 1120px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(28, 18, 32, .05), 0 10px 30px rgba(76, 29, 79, .08);
  --shadow-lg: 0 24px 60px -18px rgba(76, 29, 79, .35);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 650;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3 { font-size: 1.1rem; font-weight: 620; }

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { margin: 0 0 1rem; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--red); }

img, svg { max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 16px; top: 16px;
  z-index: 100;
  background: var(--purple);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
}

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

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ring-grad);
  color: #e6d8e8;
  font-size: .84rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a, .topbar span.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e6d8e8;
  font-weight: 500;
}
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; flex: none; color: var(--orange); }
.topbar-tag { color: #bda6bf; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(76, 29, 79, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand-logo { width: 44px; height: 44px; flex: none; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong { font-size: 1rem; font-weight: 660; letter-spacing: -.01em; }
.brand-text em {
  font-style: normal;
  font-size: .7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav > a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.nav > a:not(.btn):hover { color: var(--purple); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav > a.btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--brand-grad);
  color: #fff;
  font: inherit;
  font-size: .95rem;
  font-weight: 570;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(237, 44, 34, .7);
  transition: filter .15s ease, box-shadow .2s ease, transform .08s ease;
}
.btn:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 12px 26px -10px rgba(237, 44, 34, .8);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }

.btn-sm { padding: 9px 18px; font-size: .88rem; }

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border-color: #ddd0de;
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--purple-tint);
  color: var(--purple);
  filter: none;
  box-shadow: none;
  border-color: var(--purple-lt);
}

.btn-plum {
  background: var(--ring-grad);
  box-shadow: 0 8px 20px -10px rgba(76, 29, 79, .8);
}
.btn-plum:hover { box-shadow: 0 12px 26px -10px rgba(76, 29, 79, .9); }

.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 570;
  font-size: .95rem;
}
.link-arrow span { transition: transform .15s ease; display: inline-block; }
.link-arrow:hover span { transform: translateX(3px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 8vw, 88px);
  background:
    radial-gradient(900px 460px at 88% -20%, var(--orange-tint), transparent 65%),
    radial-gradient(800px 420px at 5% 0%, var(--purple-tint), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--brand-grad);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 620px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 560;
  color: var(--purple);
}
.pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 0 0 4px var(--orange-tint);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: .76rem;
  font-weight: 660;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--flame);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 48px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats div { margin: 0; }
.hero-stats dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 620;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.hero-stats dt svg { width: 14px; height: 14px; color: var(--orange); }
.hero-stats dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 570;
  color: var(--ink);
}

/* Hero artwork */

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.hero-art-ring {
  position: absolute;
  width: min(340px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, var(--purple-lt), var(--red), var(--orange), var(--purple-lt));
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 62%);
  mask: radial-gradient(circle, transparent 61%, #000 62%);
  opacity: .22;
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-art-logo {
  width: min(210px, 52%);
  filter: drop-shadow(0 22px 40px rgba(76, 29, 79, .28));
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: .82rem;
  font-weight: 570;
  color: var(--ink);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.chip svg { width: 16px; height: 16px; }
.chip-1 { top: 6%;  left: -2%;  color: var(--purple); }
.chip-1 svg { color: var(--purple); }
.chip-2 { top: 26%; right: -4%; animation-delay: -1.5s; }
.chip-2 svg { color: var(--flame); }
.chip-3 { bottom: 20%; left: -6%; animation-delay: -3s; }
.chip-3 svg { color: var(--red); }
.chip-4 { bottom: 4%; right: 2%; animation-delay: -4.5s; }
.chip-4 svg { color: var(--orange); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ---------- Sector strip ---------- */

.strip {
  padding: 26px 0;
  background: var(--purple);
  color: #d9c7db;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: .74rem;
  font-weight: 620;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b294b5;
}
.strip-items {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip-items li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .95rem;
  font-weight: 560;
  color: #fff;
}
.strip-items svg { width: 19px; height: 19px; color: var(--orange); }

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 660px;
  margin-bottom: 48px;
}
.section-lede {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Service cards ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #dccfdd;
}
.card p { margin-bottom: 0; font-size: .96rem; }
.card h3 { display: flex; align-items: center; gap: 8px; }

.card-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--purple-tint);
  color: var(--purple);
}
.card-icon svg { width: 23px; height: 23px; }
.card:nth-child(2) .card-icon { background: var(--orange-tint); color: var(--flame); }
.card:nth-child(3) .card-icon { background: #fdeaea; color: var(--red); }
.card:nth-child(4) .card-icon { background: var(--purple-tint); color: var(--purple-lt); }
.card:nth-child(5) .card-icon { background: var(--orange-tint); color: var(--orange); }

.card-cta {
  background: var(--ring-grad);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-cta::before { display: none; }
.card-cta:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.card-cta h3 { color: #fff; }
.card-cta p { color: #cbb4cd; margin-bottom: 16px; }
.card-cta .link-arrow { color: #fff; }
.card-cta .link-arrow:hover { color: var(--orange); }

/* ---------- About ---------- */

.about-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-inner p:last-child { margin-bottom: 0; }

.checks {
  list-style: none;
  margin: 0;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checks li {
  position: relative;
  padding: 15px 0 15px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .98rem;
  font-weight: 500;
}
.checks li:first-child { padding-top: 0; }
.checks li:first-child::before { top: 2px; }
.checks li:last-child { border-bottom: 0; padding-bottom: 0; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E"),
    var(--brand-grad);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px, cover;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.steps li {
  padding-top: 22px;
  border-top: 3px solid var(--line);
}
.steps li:nth-child(1) { border-top-color: var(--purple); }
.steps li:nth-child(2) { border-top-color: var(--red); }
.steps li:nth-child(3) { border-top-color: var(--flame); }
.steps li:nth-child(4) { border-top-color: var(--orange); }
.step-n {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--purple-tint);
  font-size: .8rem;
  font-weight: 680;
  color: var(--purple);
}
.steps li:nth-child(2) .step-n { background: #fdeaea; color: var(--red); }
.steps li:nth-child(3) .step-n { background: var(--orange-tint); color: var(--flame); }
.steps li:nth-child(4) .step-n { background: var(--orange-tint); color: #b4581c; }
.steps h3 { margin-bottom: .35em; }
.steps p { margin-bottom: 0; font-size: .95rem; }

/* ---------- Contact ---------- */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.contact-list li:hover {
  transform: translateY(-2px);
  border-color: #dccfdd;
  box-shadow: var(--shadow);
}

.contact-ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 10px;
  background: var(--purple-tint);
  color: var(--purple);
}
.contact-ico svg { width: 19px; height: 19px; }
.contact-list li:nth-child(2) .contact-ico { background: var(--orange-tint); color: var(--flame); }
.contact-list li:nth-child(3) .contact-ico { background: #fdeaea; color: var(--red); }
.contact-list li:nth-child(4) .contact-ico { background: var(--purple-tint); color: var(--purple-lt); }

.wa-inline { margin-top: 20px; }

.contact-body { min-width: 0; }
.contact-label {
  display: block;
  margin-bottom: 2px;
  font-size: .72rem;
  font-weight: 660;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-body a {
  display: block;
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--ink);
  word-break: break-word;
}
.contact-body a:hover { color: var(--red); }
.contact-body address {
  font-style: normal;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-form {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--brand-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .85rem;
  font-weight: 570;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-tint);
}
.field input.invalid,
.field textarea.invalid {
  border-color: #d94b4b;
  box-shadow: 0 0 0 3px #fdecec;
}

.form-note {
  margin: 14px 0 0;
  min-height: 1.2em;
  font-size: .88rem;
  color: var(--ink-mute);
}
.form-note.ok { color: #15803d; }
.form-note.err { color: #c23434; }

/* ---------- WhatsApp float ---------- */

.wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa:hover { color: #fff; transform: translateY(-2px); }
.wa svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--purple-dk);
  color: #a795a9;
  padding: 60px 0 0;
  border-top: 4px solid transparent;
  border-image: var(--brand-grad) 1;
}
.site-footer .brand,
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text em { color: var(--orange); }
.site-footer a { color: #d5c7d6; }
.site-footer a:hover { color: var(--orange); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-blurb {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: .92rem;
  line-height: 1.7;
}

.footer-h {
  margin: 0 0 16px;
  font-size: .74rem;
  font-weight: 660;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: .93rem;
}
.footer-list li { display: flex; align-items: flex-start; gap: 9px; }
.footer-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--orange); }
.footer-list address { font-style: normal; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid #4a2b4c;
  font-size: .85rem;
  color: #8d7b8f;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; order: -1; }
  .hero-copy { max-width: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .contact-list { margin-top: 24px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .topbar-tag { display: none; }

  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav > a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav > a.btn {
    margin-top: 14px;
    border-bottom: 0;
    justify-content: center;
    padding: 13px 22px;
  }

  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px 36px; }
  .contact-form { padding: 24px; }
  .chip-1, .chip-3 { left: 0; }
  .chip-2, .chip-4 { right: 0; }
  .wa span { display: none; }
  .wa { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
