/* ==========================================================================
   Hero — Corporate Editorial
   ========================================================================== */

.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero__inner {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 70px 40px;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 52%;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-deep);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 28px;
}

.hero__eyebrow .sq {
  width: 24px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.2rem, 3.4vw + 0.8rem, 3.6rem);
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 19ch;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--red);
  background: none;
  padding: 0;
}

.hero__lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.72;
  max-width: 54ch;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid var(--navy-deep);
  padding: 16px 30px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}

.hero__phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}

.hero__phone-link:hover { border-color: var(--navy-deep); color: var(--navy-deep); }

.hero__phone-link .ring {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}
.hero__phone-link svg { width: 13px; height: 13px; fill: var(--ink); }

/* stats row — editorial: quiet numerals separated by thin verticals */
.hero__stats {
  display: flex;
  gap: 0;
  border: none;
  width: fit-content;
  background: transparent;
}

.hero__stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.hero__stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__stat span {
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.55;
}

/* visual side — occupies the full right half of the hero, edge to edge */
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

.hero__visual svg { width: 100%; height: 100%; display: block; }

/* gentle orbiting motion — respects reduced-motion */
.hero__visual .orbit,
.hero__visual .orbit-dots {
  transform-box: view-box;
  transform-origin: 200px 180px;
}

.hero__visual .orbit--slow { animation: hero-spin 46s linear infinite; }
.hero__visual .orbit--medium { animation: hero-spin-reverse 30s linear infinite; }
.hero__visual .orbit-dots { animation: hero-spin 20s linear infinite; }

@keyframes hero-spin { to { transform: rotate(360deg); } }
@keyframes hero-spin-reverse { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero__visual .orbit,
  .hero__visual .orbit-dots { animation: none; }
}

/* AIIC + trust badge strip */
.hero__certified {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero__certified-badge {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.hero__certified-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.65;
  max-width: 42ch;
  font-weight: 400;
}

.hero__certified-text strong { color: var(--ink); font-weight: 600; opacity: 1; }

/* client logo strip */
.clients {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.clients__label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.clients__marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: clients-marquee 36s linear infinite;
}

.clients__marquee:hover .clients__track {
  animation-play-state: paused;
}

@keyframes clients-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.clients__track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0.45;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.clients__track span:nth-child(4n+1) { color: var(--navy-deep); }
.clients__track span:nth-child(4n+2) { color: var(--red); }
.clients__track span:nth-child(4n+3) { color: var(--gold); }
.clients__track span:nth-child(4n+4) { color: var(--sky); }

.clients__track span:hover { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
}

/* decorative — a single restrained line-drawn accent, no scattered filled shapes */
.hero__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__deco .shape { position: absolute; }

.shape--circle {
  width: 1px;
  height: 1px;
  display: none;
}
.shape--triangle { display: none; }
.shape--square { display: none; }

.hero__deco::after {
  content: "";
  position: absolute;
  top: 0;
  right: 6%;
  width: 1px;
  height: 100%;
  background: var(--line);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .hero { min-height: 0; display: flex; flex-direction: column; }
  .hero__inner { padding: 32px 40px 56px; order: 2; }
  .hero__content { max-width: none; }
  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 340px;
    order: 1;
  }
  .hero h1 { max-width: none; }
  .hero__deco::after { display: none; }
}

@media (max-width: 640px) {
  .hero__inner { padding: 56px 20px 40px; }
  .hero__stats { flex-wrap: wrap; gap: 20px 0; }
  .hero__stat { border-right: none; padding-right: 0; margin-right: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .btn-primary { text-align: center; }
  .hero__phone-link { justify-content: center; }
  .hero__visual { height: 260px; }
  .clients__inner { gap: 20px; padding: 24px 20px; }
  .clients__track span { font-size: 15px; }
}
