/* ==========================================================================
   Four Media AI — custom overrides layered on top of the base template.
   Keep this file separate so future template updates stay easy to re-apply.
   ========================================================================== */

/* Logo wordmark (replaces the template's own logo files) */
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
  white-space: nowrap;
}
.logo-text .accent {
  background: linear-gradient(132deg, #EA2B16 0%, #FF3B26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-text .tld {
  font-weight: 600;
  color: var(--secondary);
  font-size: 15px;
}
footer .logo-text,
.canvas_head .logo-text {
  color: var(--white);
}
footer .logo-text .tld,
.canvas_head .logo-text .tld {
  color: var(--neutral-400);
}

/* Legibility scrim for full-bleed photo sections (hero + contact) so the
   template's dark gradient headings stay readable over a photograph. */
.section-hero .hero-image::after,
.section-contact .contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.46) 42%, rgba(255, 255, 255, 0.6) 100%);
}
.section-contact .contact-image {
  overflow: hidden;
}

/* Text marquee (replaces the placeholder partner-logo strip) */
.marquee-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  margin-right: 16px;
}
.marquee-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* Hero stat-chip row (v2: Ground Intelligence positioning). Reuses the
   marquee-chip pill styling above in a static, centered row instead of an
   infinite-scroll strip, so it needs its own spacing/margin reset. */
.hero-stats {
  margin-top: 32px;
}
.hero-stats .marquee-chip {
  margin-right: 0;
}

/* Compact supporting stat line under the About section's headline number */
.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}
.trust-mini strong {
  color: var(--primary);
}
.stat-caption {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: normal;
  font-weight: 600;
  color: var(--secondary);
}

/* Founder / heritage line inside the ethos quote card */
.cite .role {
  color: var(--secondary);
}

/* Pricing: swap the big numeric price for a short word without breaking the
   card's proportions. */
.pricing-item .price-number.is-word {
  font-size: 44px;
  line-height: 48px;
}
@media (max-width: 767px) {
  .pricing-item .price-number.is-word {
    font-size: 32px;
    line-height: 36px;
  }
}

/* "Full-Funnel" fanned photo stack in the Why-Us section: give the swapped-in
   photos the rounded-card + shadow treatment the original placeholder art had
   baked in as flat vector/raster shapes. */
.benefits-design-inner img {
  border-radius: 20px;
  box-shadow: 0px 20px 40px 0px rgba(20, 20, 22, 0.18);
  object-fit: cover;
}

/* Industries strip inside the features/why-us area */
.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.industries-row span {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--neutral-100);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

/* Contact detail row for the office address / hours (third + fourth items) */
.contact-item .content .text {
  line-height: 22px;
}
