/* ============================================================
   Contact page (/company/contact/) — dark hero + light body.
   Reuses the global --swatch--* tokens; layout only.
   ============================================================ */

/* ---- hero ---- */
.contact_hero { position: relative; overflow: hidden; background-color: var(--swatch--colorp4, #002017); }
.contact_hero_inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 42rem; }
.contact_eyebrow { display: inline-flex; align-items: center; gap: 0.625rem; }
.contact_eyebrow_dot { width: 8px; height: 8px; border-radius: 50%; background-color: var(--swatch--colors3, #d5fe70); flex-shrink: 0; }
.contact_eyebrow_text { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--swatch--colors3, #d5fe70); }
.contact_title { margin: 0; color: #fff; font-weight: 300; letter-spacing: -0.04em; line-height: 1.12;
  font-size: clamp(2.4rem, 1.7rem + 2.4vw, 3.3125rem); }
.contact_title strong { font-weight: 700; }
.contact_sub { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 1rem; line-height: 1.6; }

/* ---- body ---- */
.contact_body { background: #fff; }
.contact_grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 26rem);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
  padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

/* -- left column: intro copy + feature rows -- */
.contact_intro { display: flex; flex-direction: column; gap: 1.5rem; max-width: 34rem; }
.contact_intro p { margin: 0; color: #33403a; line-height: 1.7; font-size: 1.0625rem; }
.contact_features { display: flex; flex-direction: column; gap: 1.5rem; margin: 0.5rem 0; }
.contact_feature_row { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact_feature_icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 0.15rem; }
.contact_feature_title { margin: 0 0 0.3rem; color: #0b1a14; font-weight: 600; font-size: 1rem; }
.contact_feature_body { margin: 0; color: #33403a; line-height: 1.55; font-size: 0.9375rem; }

/* -- right column: form card with focus-activated corner dots --
   Activated via JS (.is-active), not :focus-within: the HubSpot form
   renders in an iframe, and :focus-within does not reliably propagate
   across an iframe boundary — see the inline script below the embed. */
.contact_form_card { position: relative; border: 1px solid var(--swatch--light-stroke-color, #d9d9d9);
  padding: clamp(1.5rem, 2.5vw, 2.25rem); }
.contact_form_card_dot { position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background-color: var(--swatch--colorp3, #00de64); opacity: 0; transition: opacity 0.35s ease; }
.contact_form_card.is-active .contact_form_card_dot { opacity: 1; }
.contact_form_card_dot--tl { top: -3px; left: -3px; }
.contact_form_card_dot--tr { top: -3px; right: -3px; }
.contact_form_card_dot--bl { bottom: -3px; left: -3px; }
.contact_form_card_dot--br { bottom: -3px; right: -3px; }
@media (prefers-reduced-motion: reduce) {
  .contact_form_card_dot { transition: none; }
}

/* ---- responsive ---- */
@media screen and (max-width: 991px) {
  .contact_hero_inner { max-width: none; }
  .contact_grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 479px) {
  .contact_form_card { padding: 1.5rem 1.25rem; }
}
