.about-card {
  background: var(--at-neutral-0, #fefefe);
  border: 1px solid var(--at-neutral-100, #ececec);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15, 15, 15, 0.15);
}
.about-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 70, 14, 0.1);
  color: var(--at-theme-primary, #f0460e);
  margin-bottom: 18px;
}

.about-card__icon--glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fefefe;
}

/* ---- Why IDALITE — numbered feature list. An editorial two-column list
   (big index numeral + hairline dividers + hover-reveal arrow) instead of
   identical icon-in-a-circle cards, so the section doesn't read as a
   generic template block. ---- */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--at-neutral-100, #ececec);
}
.why-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--at-neutral-100, #ececec);
  overflow: hidden;
}
/* .why-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 70, 14, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
} */
 .why-row::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.07) 35%,
        rgba(255, 255, 255, 0.025) 65%,
        rgba(255, 255, 255, 0) 100%
    );

    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.why-row:hover::before,
.why-row:focus-within::before {
  opacity: 1;
}
.why-row:nth-child(odd) {
  border-right: 1px solid var(--at-neutral-100, #ececec);
  padding-right: 32px;
  padding-left: 32px;
}
.why-row:nth-child(even) {
  padding-left: 32px;
}
.why-row__num {
  flex-shrink: 0;
  min-width: 56px;
  font-family: var(--at-ff-heading, inherit);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--at-neutral-100, #dfdfdf);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.why-row:hover .why-row__num,
.why-row:focus-within .why-row__num {
    color: #ffffff !important;
    text-shadow: 0 0 26px rgba(255, 255, 255, 0.45);
}
/* .why-row:hover .why-row__num,
.why-row:focus-within .why-row__num {
  color: var(--at-theme-primary, #f0460e);
  text-shadow: 0 0 26px rgba(240, 70, 14, 0.45);
} */
.why-row__body {
  flex: 1;
  min-width: 0;
}
.why-row__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--at-neutral-900, #1d1d1d);
  margin-bottom: 0;
}
.why-row__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--at-neutral-500, #585959);
  margin: 0;
  max-width: 42ch;
}
.why-row__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid var(--at-neutral-100, #ececec);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--at-neutral-900, #1d1d1d);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
  display: none;
}
.why-row:hover .why-row__arrow,
.why-row:focus-within .why-row__arrow {
  opacity: 1;
  transform: translate(0, 0);
  border-color: var(--at-theme-primary, #f0460e);
  background: var(--at-theme-primary, #f0460e);
  color: #fefefe;
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
  .why-row:nth-child(odd){
    padding-left: 20px !important;
  }
}
@media (max-width: 767.98px) {
  .why-list {
    grid-template-columns: 1fr;
  }
  .why-row:nth-child(odd) {
    border-right: none;
    padding-right: 0;
    padding-left: 10px;
  }
  .why-row:nth-child(even) {
    padding-left: 10px;
  }
  .why-row {
    padding: 26px 0;
    gap: 16px;
  }
  .why-row__num {
    font-size: 28px;
    min-width: 40px;
  }
  .why-row__arrow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-row,
  .why-row::before,
  .why-row__num,
  .why-row__arrow {
    transition: none;
  }
}

.about-team-card {
  text-align: center;
}
.about-team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--at-theme-primary, #f0460e);
  color: #fefefe;
  font-family: var(--at-ff-heading, inherit);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}

/* ---- Service area — hub-and-spoke coverage map. Boise as the glowing
   hub, spokes running out to each satellite city, replacing a floating
   row of pill badges that had no visual connection to "service area". ---- */
/* ---- Service area — location-pin cards. A simple, self-explanatory grid
   (pin icon + city name) replaces an earlier hub-and-spoke diagram that
   needed too much explaining; Boise is called out as the home base via a
   small tag rather than a separate visual language. ---- */
.service-pins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-pin {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--at-neutral-100, #ececec);
  background: var(--at-neutral-0, #fefefe);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-pin:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 70, 14, 0.4);
  box-shadow: 0 16px 32px -20px rgba(15, 15, 15, 0.35);
}
.service-pin__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(240, 70, 14, 0.1);
  color: var(--at-theme-primary, #f0460e);
}
.service-pin__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--at-neutral-900, #1d1d1d);
}
.service-pin__tag {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--at-theme-primary, #f0460e);
  color: #fefefe;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.service-pin--hub {
  border-color: rgba(240, 70, 14, 0.4);
  background: linear-gradient(135deg, rgba(240, 70, 14, 0.08), transparent 70%);
}
@media (max-width: 991.98px) {
  .service-pins {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .service-pins {
    grid-template-columns: 1fr;
  }
}

/* Hero breadcrumb (Bootstrap .breadcrumb) — plain markup, styled here to
   read as small uppercase tracked-out text on the dark hero video instead
   of Bootstrap's default breadcrumb look. */
.about-hero-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
  --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-hero-breadcrumb .breadcrumb-item a {
  color: #fefefe;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.about-hero-breadcrumb .breadcrumb-item a:hover {
  text-decoration: none;
}
/* Bootstrap's print stylesheet appends the raw href after every link
   (a[href]::after { content: " (" attr(href) ")" }) so paper printouts
   still show the URL. Harmless on screen, but ugly in print preview for
   this breadcrumb — suppress it here specifically. */
@media print {
  .about-hero-breadcrumb .breadcrumb-item a::after {
    content: none !important;
  }
}

/* Contact card — divider + social icons (replaces a solid CTA button so the
   card ends on a quiet note rather than a second orange button competing
   with the form's own submit button). */
.about-card__divider {
  height: 1px;
  background: var(--at-neutral-100, #ececec);
  margin: 28px 0 20px;
}
.about-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fefefe;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.about-social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
}

/* Contact form's service-type field — a plain native <select> styled to
   match .sec-4-about-form__input's underline look exactly (no nice-select
   plugin: that swaps in its own unrelated markup/CSS and breaks both the
   visual match and the field spacing). */
.sec-4-about-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M1 1L5 5L9 1" stroke="%23767676" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

/* Contact map (Leaflet) */
#contactMap {
  background: #e5e3df;
}
.contact-map-pin span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--at-theme-primary, #f0460e);
  border: 3px solid #fefefe;
  box-shadow: 0 0 0 4px rgba(240, 70, 14, 0.35);
}

/* About-page phone layout. Keep the desktop/tablet design unchanged. */
@media (max-width: 649.98px) {

  .why-row, .why-row:nth-child(odd), .why-row:nth-child(even) { padding-left: 0; }
  .why-row::before { display: none; }
  .why-row__num,
  .why-row:hover .why-row__num,
  .why-row:focus-within .why-row__num {
    min-width: 50px;
    background: linear-gradient(135deg, #ffffff 10%, #8edcff 55%, #54bff2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    text-shadow: none;
  }
  .about-4-proof__grid--milestones {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: clamp(10px, 3vw, 18px); row-gap: 0;
  }
  .about-4-proof__grid--milestones .about-4-stat {
    min-width: 0; margin-bottom: 0;
    padding: 0 clamp(6px, 2vw, 12px) 22px 0 !important;
    border-right: 0 !important;
  }
  .about-4-proof__grid--milestones .about-4-stat:not(:first-child) { padding-left: 0; }
  .about-4-proof__grid--milestones .about-4-stat__value {
    margin-bottom: 8px; font-size: clamp(24px, 7.4vw, 32px);
    line-height: 1; letter-spacing: -0.04em; white-space: nowrap;
  }
  .about-4-proof__grid--milestones .about-4-stat__label {
    max-width: 13ch; font-size: clamp(11px, 3.25vw, 14px); line-height: 1.35;
  }
}
/* Mobile breadcrumb spacing for wrapped service titles. */
@media (max-width: 649.98px) {
  .about-hero-breadcrumb {
    --bs-breadcrumb-item-padding-x: 0.75rem;
    align-items: center;
    row-gap: 6px;
    line-height: 1.4;
  }

  .about-hero-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-top: 2px;
  }
}
