/* ===========================
   GLOBAL RESET & VARIABLES
=========================== */
:root {
  --navy-900: #0a1830;
  --navy-800: #0e2140;
  --red-600: #e2241f;
  --red-700: #c01a16;
  --red-50: #fdecec;
  --ink: #1c2733;
  --gray-600: #5b6472;
  --gray-500: #7a8494;
  --gray-100: #eef1f5;
  --gray-50: #f7f8fa;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(15, 30, 60, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 30, 60, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 24, 48, 0.16);
  --ff-head: "Poppins", sans-serif;
  --ff-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
svg {
  display: block;
}
section {
  position: relative;
}

/* ===========================
   TYPOGRAPHY SYSTEM
   Base rules here are the desktop (>=1024px) sizes.
   Mobile & tablet (<1024px) overrides live in css/media/media.css.
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-head);
  color: var(--navy-900);
  line-height: 1.22;
  font-weight: 700;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p,
li,
button,
.btn {
  font-size: 16px;
}

/* ===========================
   LAYOUT
   Kept page-agnostic on purpose â€” every page reuses .container and the
   section spacing scale. Page-specific layout (grids, split columns,
   inner rows) lives under each page's own PAGE block further down.
=========================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Section spacing â€” large-desktop default here; tablet/desktop and mobile
   overrides live in css/media/media.css. Padding lives on the section
   wrapper itself, never on .container. */
section {
  padding: 4rem 0;
}
.footer {
  padding: 4rem 0;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
}
.footer{
  padidng-bottom:0 !important;
}
/* Home Hero */
/* .row is a pure layout class (grid/flex arrangement), scoped per page/section â€” no padding of its own; horizontal gutter comes from the section wrapper */

/* ===========================
   SHARED COMPONENTS
   Reusable across every page â€” icons, buttons, cards, badges, the CTA
   banner and the dark "panel" card. Do NOT scope these under a page
   class; every future page is expected to reuse them as-is.
=========================== */
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Round icon chip â€” each usage only sets size + colors */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-600);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-600);
  display: inline-block;
  border-radius: 2px;
}

/* Section heading block (eyebrow + h2) */
.head {
  max-width: 640px;
  margin-bottom: 52px;
}
/* Centered variant â€” section intros with no accompanying side content */
.head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow.center {
  justify-content: center;
  width: 100%;
}

/* White card surface â€” service cards, testimonial cards */
.card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Small overlay card â€” hero highlight, industries stat */
.badge {
  background: #fff;
  color: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 20px;
}
.badge span {
  font-size: 13px;
  color: var(--gray-600);
}

/* Small pill label â€” industry highlight, feature tag */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
}

/* Breadcrumb â€” single shared component for every inner-page banner/hero.
   Always the first element inside the banner/hero row, above the eyebrow
   and heading, on every page. */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #fff;
  font-weight: 600;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--red-600);
}
.breadcrumb .current {
  color: var(--red-600);
  font-weight: 600;
}
.breadcrumb .icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Initials chip â€” testimonial author, team member */
.avatar {
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn:hover .icon {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(226, 36, 31, 0.32);
}
.btn-primary:hover {
  background: var(--red-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(226, 36, 31, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 24, 48, 0.28);
}
.btn-dark:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(226, 36, 31, 0.35);
}
.btn-light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  background: var(--red-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(226, 36, 31, 0.35);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--gray-100);
}
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

/* Dark gradient panel card â€” About "Why Choose Us", footer floating card */
.panel {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

/* CTA banner â€” mid-page industries banner, footer banner */
.cta {
  background: linear-gradient(100deg, var(--red-700), var(--red-600));
  margin: 130px 0 100px;
}
.cta .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 50px;
  color: #fff;
  flex-wrap: wrap;
}
.cta .left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta .left .icon-circle {
  width: 66px;
  height: 66px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cta .left .icon-circle .icon {
  width: 28px;
  height: 28px;
}
.cta .left h3 {
  color: #fff;
  margin-bottom: 4px;
}
.cta .left p {
  color: rgba(255, 255, 255, 0.82);
}
.cta .btn-primary {
  background: #fff;
  color: var(--red-600);
  box-shadow: none;
}
.cta .btn-primary:hover {
  background: var(--navy-900);
  color: #fff;
}

/* Inner-page header â€” About/Services page banners */
.banner {
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.94),
      rgba(10, 24, 48, 0.86) 45%,
      rgba(10, 24, 48, 0.55)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.banner h1 {
  color: #fff;
}
.banner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-top: 14px;
}

/* FAQ accordion â€” shared "question row" / expand-collapse mechanics reused
   by the Contact, Industries, and Reviews FAQ sections. Each page keeps its
   own .faq-item shell styling (border/background/icon) scoped separately. */
.faq-item .q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  background: none;
}
.faq-item .q .text {
  flex: 1;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-900);
}
.faq-item .a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.active .a {
  grid-template-rows: 1fr;
}
.faq-item .a .inner {
  overflow: hidden;
  min-height: 0;
}

/* Accordion variant â€” Industries + Reviews FAQ (bordered card, +/- toggle,
   round icon). Contact's FAQ uses a flatter card with a numbered badge and
   chevron instead, so it stays scoped under .contact .resources. */
.accordion .faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-left: 4px solid transparent;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.accordion .faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.accordion .faq-item.active {
  border-left-color: var(--red-600);
  background: var(--red-50);
  box-shadow: var(--shadow-sm);
}
.accordion .q-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red-50);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.accordion .faq-item.active .q-icon {
  background: var(--red-600);
  color: #fff;
}
.accordion .q-icon .icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.accordion .toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.accordion .toggle .v,
.accordion .toggle .h {
  position: absolute;
  background: var(--gray-500);
  border-radius: 2px;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}
.accordion .toggle .h {
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
}
.accordion .toggle .v {
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
}
.accordion .faq-item.active .toggle .v {
  transform: scaleY(0);
  opacity: 0;
}
.accordion .faq-item.active .toggle .h {
  background: var(--red-600);
}
.accordion .a p {
  padding: 0 20px 20px 68px;
  /* font-size: 15px; */
  color: var(--gray-600);
  line-height: 1.6;
}
.accordion .a a {
  color: var(--red-600);
  font-weight: 600;
}

/* ===========================
   SITE CHROME
   Header and footer are shared across every page â€” never scoped under
   a page class.
=========================== */

/* Topbar */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 1.5rem;
}
.topbar .left {
  display: flex;
  align-items: center;
  gap: 26px;
}
.topbar .left span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .left .icon {
  width: 18px;
  height: 18px;
  color: var(--red-600);
}
.topbar .right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar .social {
  display: flex;
  gap: 12px;
}
.topbar .social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.topbar .social a:hover {
  background: var(--red-600);
}
.topbar .social .icon {
  width: 18px;
  height: 18px;
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 6px 24px rgba(15, 30, 60, 0.08);
}
.navbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
}
.logo .mark {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo span {
  color: var(--red-600);
}
.navbar .links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar .links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-900);
  position: relative;
  padding: 6px 0;
}
.navbar .links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red-600);
  transition: width 0.25s ease;
}
.navbar .links a:hover::after,
.navbar .links a.active::after {
  width: 100%;
}
.navbar .links a:hover,
.navbar .links a.active {
  color: var(--red-600);
}
.navbar .actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.navbar .phone .icon-circle {
  width: 38px;
  height: 38px;
  background: var(--red-50);
  color: var(--red-600);
}
.navbar .phone .icon-circle .icon {
  width: 17px;
  height: 17px;
}
.navbar .phone .label {
  font-size: 12px;
  color: var(--gray-500);
}
.navbar .phone strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 15px;
  color: var(--navy-900);
}
.navbar .toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.navbar .toggle .icon {
  width: 24px;
  height: 24px;
  color: var(--navy-900);
}

/* Footer */
.footer .panel {
  background: none;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
}
.footer .logo span {
  color: #ff6b66;
}

.footer .cta {
  background: none;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .cta .row {
  padding: 34px 24px;
}
.footer .cta .left .icon-circle {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.footer .cta .left .icon-circle .icon {
  width: 24px;
  height: 24px;
}
.footer .cta .left p {
  color: rgba(255, 255, 255, 0.65);
}
.footer .cta .btn-primary {
  background: #fff;
  color: var(--navy-900);
}
.footer .cta .btn-primary:hover {
  background: var(--red-600);
  color: #fff;
}

.footer .main {
  padding: 64px 0;
}
.footer .main .row {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 1.05fr 1.1fr;
  gap: 32px;
  padding: 0 24px;
}
.footer .main .row > div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 24px;
}
.footer .main .row > div:last-child {
  border-right: none;
  padding-right: 0;
}
.footer .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer .brand p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.footer .social {
  display: flex;
  gap: 10px;
}
.footer .social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer .social a:hover {
  background: var(--red-600);
}
.footer .social .icon {
  width: 16px;
  height: 16px;
}
/* Exception: footer column labels are a small uppercase eyebrow-style heading, not a body h4 */
.footer h4 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer .links li {
  margin-bottom: 12px;
}
.footer .links a {
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer .links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer .contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.footer .contact .icon {
  width: 18px;
  height: 18px;
  color: var(--red-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer .newsletter p {
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer .newsletter form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}
.footer .newsletter form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 11px 12px;
  color: #fff;
  font-size: 13.5px;
}
.footer .newsletter form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .newsletter form button {
  background: var(--red-600);
  color: #fff;
  width: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.footer .newsletter form button:hover {
  background: var(--red-700);
}
.footer .newsletter .icon {
  width: 17px;
  height: 17px;
}

.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .bottom .row {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .bottom a {
  margin-left: 22px;
}
.footer .bottom a:hover {
  color: #fff;
}

/* ===========================
   QUOTE MODAL
   Shared popup opened by every "Get/Request/Free Quote" button site-wide
   (header, footer, and every page). Houses the same .quote-form markup
   used on the Contact page, mounted from one template in include.js.
=========================== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 48, 0.72);
  backdrop-filter: blur(3px);
}
.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  transform: scale(0.94) translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}
.quote-modal.is-open .quote-modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.quote-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--navy-900);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.quote-modal__close:hover {
  background: var(--red-600);
  color: #fff;
  transform: rotate(90deg);
}
.quote-modal__close .icon {
  width: 16px;
  height: 16px;
}
.quote-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-right: 30px;
}
.quote-modal__head .icon-circle {
  width: 52px;
  height: 52px;
  background: var(--red-50);
  color: var(--red-600);
  flex-shrink: 0;
}
.quote-modal__head .icon-circle .icon {
  width: 24px;
  height: 24px;
}
.quote-modal__head h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.quote-modal__head p {
  color: var(--gray-600);
  font-size: 14px;
}
body.quote-modal-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .quote-modal, .quote-modal__dialog, .quote-modal__close { transition: none; }
}

/* ===========================
   PAGE: HOME
   Every selector here is scoped under .home so future pages (about,
   services, contact...) can reuse section/class names like .hero,
   .grid, .card without any risk of colliding with this page's rules.
=========================== */

/* Hero Section */
.home .hero {
  padding:0;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.94),
      rgba(10, 24, 48, 0.86) 45%,
      rgba(10, 24, 48, 0.55)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.home .hero .row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
    .home .hero .content {
      padding-top:4rem;
    }
.home .hero .eyebrow {
  color: #ff8f8b;
}
.home .hero .eyebrow::before {
  background: #ff8f8b;
}
.home .hero .content h1 {
  color: #fff;
  letter-spacing: -0.5px;
}
.home .hero .content h1 em {
  font-style: normal;
  color: var(--red-600);
}
/* Exception: hero lead paragraph is intentionally larger than the global body copy size */
.home .hero .content p {
  margin: 22px 0 34px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
}
.home .hero .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home .hero .image {
  position: relative;
  height: 420px;
}
/* Feature Strip (nested inside the hero section) */
.home .feature {
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home .feature .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 24px;
}
.home .feature .item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.home .feature .item:last-child {
  border-right: none;
}
.home .feature .icon-circle {
  width: 46px;
  height: 46px;
  background: var(--red-600);
  color: #fff;
}
.home .feature .icon-circle .icon {
  width: 22px;
  height: 22px;
}
.home .feature strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.home .feature span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.home .services {
  background: var(--gray-50);
}
.home .services .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
}
.home .services .title {
  max-width: 560px;
}
.home .services .text {
  max-width: 320px;
  color: var(--gray-600);
  text-align: right;
  flex-shrink: 0;
}
.home .services .grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.home .services .card {
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.home .services .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.home .services .thumb {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
  background: var(--gray-100);
}
.home .services .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home .services .card:hover .thumb img {
  transform: scale(1.08);
}
.home .services .mark {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease;
}
.home .services .mark .icon {
  width: 24px;
  height: 24px;
}
.home .services .card:hover .mark {
  background: var(--navy-900);
}
.home .services .content {
  padding: 38px 22px 28px;
}
/* Exception: card title sits in a 5-up grid, smaller than a standard h3 */
.home .services .content h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
}
.home .services .content p {
  color: var(--gray-600);
  margin-bottom: 18px;
}
.home .services .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--red-600);
}
.home .services .more .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.home .services .card:hover .more .icon {
  transform: translateX(4px);
}

/* About + Why Choose Us */
.home .about .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.home .about .content h2 {
  margin-bottom: 20px;
}
.home .about .content p {
  color: var(--gray-600);
  margin-bottom: 26px;
}
.home .about .list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px 20px;
  margin-bottom: 34px;
}
.home .about .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.home .about .list .icon-circle {
  width: 24px;
  height: 24px;
  background: var(--red-50);
  color: var(--red-600);
}
.home .about .list .icon {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}
.home .about .panel .eyebrow {
  color: #ff8f8b;
}
.home .about .panel .eyebrow::before {
  background: #ff8f8b;
}
.home .about .panel h3 {
  color: #fff;
  margin-bottom: 28px;
}
.home .about .panel .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.home .about .panel .item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.home .about .panel .item:hover {
  background: var(--red-600);
  transform: translateY(-4px);
  border-color: transparent;
}
.home .about .panel .item .icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 12px;
}
.home .about .panel .item span {
  font-size: 13.5px;
  font-weight: 600;
  display: block;
}

/* Stats */
.home .stats {
  background: var(--navy-900);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.home .stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 300px at 15% 50%,
    rgba(226, 36, 31, 0.12),
    transparent 70%
  );
}
.home .stats .row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.home .stats .stat {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.home .stats .stat .icon-circle {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.home .stats .stat .icon-circle .icon {
  width: 26px;
  height: 26px;
  color: #fff;
}
.home .stats .stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 700;
}
.home .stats .stat span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
}

/* Industries */
.home .industries {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}
/* Soft floating gradient decoration â€” reuses the Industries-page hero blob look */
.home .industries .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.home .industries .blob-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -60px;
  background: radial-gradient(circle, rgba(226, 36, 31, 0.55), transparent 70%);
  animation: industriesBlobFloat 12s ease-in-out infinite;
}
.home .industries .blob-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(10, 24, 48, 0.4), transparent 70%);
  animation: industriesBlobFloat 14s ease-in-out infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
  .home .industries .blob { animation: none; }
}
.home .industries .container {
  position: relative;
  z-index: 1;
}
.home .industries .head h2 em {
  font-style: normal;
  color: var(--red-600);
}
.home .industries .head p {
  color: var(--gray-600);
  margin-top: 14px;
}
.home .industries .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 4rem;
}
.home .industries .card {
  position: relative;
  overflow: hidden;
  padding: 34px 26px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}
/* Gradient accent bar that sweeps in on hover */
.home .industries .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-600), var(--red-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.home .industries .card:hover::before {
  transform: scaleX(1);
}
/* Large faint index numeral â€” decorative, sits behind the icon/heading/copy */
.home .industries .card .num {
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--ff-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  user-select: none;
}
.home .industries .card .icon-circle,
.home .industries .card h3,
.home .industries .card > p {
  position: relative;
  z-index: 1;
}
.home .industries .card .icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--red-50);
  color: var(--red-600);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.home .industries .card .icon-circle .icon {
  width: 26px;
  height: 26px;
}
.home .industries .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.home .industries .card:hover .icon-circle {
  background: var(--red-600);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
/* Spotlight the hovered card by gently dimming its siblings */
.home .industries .grid:hover .card:not(:hover) {
  opacity: 0.65;
}
/* Exception: card title sits in a 4-up grid, smaller than a standard h3 */
.home .industries .card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.home .industries .card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.5;
}
/* Positions the shared .cta banner as a self-contained card inside this section */
.home .industries .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 44px 50px;
  color: #fff;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Testimonials */
/* Slider viewport â€” clips everything but the current page */
.home .testimonials .grid {
  overflow: hidden;
}
/* Track holds one or more "pages"; slides horizontally between them */
.home .testimonials .track {
  display: flex;
  transition: transform 0.5s ease;
}
/* Each page shows 3 cards at once (2/1 on smaller screens â€” see media/media.css) */
.home .testimonials .page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.home .testimonials .card {
  padding: 32px 28px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.home .testimonials .card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.home .testimonials .stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 16px;
}
.home .testimonials .stars .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}
.home .testimonials .card p {
  color: var(--gray-600);
  margin-bottom: 24px;
}
.home .testimonials .person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.home .testimonials .avatar {
  width: 46px;
  height: 46px;
  font-size: 15px;
}
.home .testimonials .person strong {
  display: block;
  font-size: 14.5px;
}
.home .testimonials .person span {
  font-size: 12.5px;
  color: var(--gray-500);
}
.home .testimonials .dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.home .testimonials .dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-100);
  transition:
    background 0.25s ease,
    width 0.25s ease;
}
.home .testimonials .dots button.active {
  background: var(--red-600);
  width: 26px;
  border-radius: 5px;
}

/* ===========================
   PAGE: ABOUT
=========================== */

/* Hero banner â€” tall split-line headline over a slow Ken Burns pan, with
   staggered fade-up entrance and the breadcrumb pinned to the bottom
   (mirrors the shared .banner component but adds motion for this page). */
.about .banner {
  background: none;
  position: relative;
  isolation: isolate;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about .banner::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.94),
      rgba(10, 24, 48, 0.82) 45%,
      rgba(10, 24, 48, 0.5)
    ),
    url("../images/about-bg.png");
  background-size: cover;
  background-position: center 75%;
  animation: aboutHeroPan 18s ease-in-out infinite alternate;
}
.about .banner .row {
  max-width: 880px;
}
.about .banner .breadcrumb,
.about .banner .eyebrow,
.about .banner h1,
.about .banner p {
  opacity: 0;
  animation: aboutFadeUp 0.9s ease forwards;
}
.about .banner .breadcrumb { animation-delay: 0.1s; }
.about .banner .eyebrow { animation-delay: 0.25s; }
.about .banner h1 { animation-delay: 0.4s; }
.about .banner p { animation-delay: 0.55s; }
.about .banner h1 {
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 14px 0 20px;
}
.about .banner h1 em {
  font-style: normal;
  color: var(--red-600);
  display: block;
}

/* Hero highlight card â€” floating trio of quick-trust stats pinned to the
   right side of the About hero. Fills the open background area beside the
   headline (instead of leaving it empty) without touching the photo. */
.about .banner .highlights {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(10, 24, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  opacity: 0;
  animation: aboutFadeUp 0.9s ease forwards;
  animation-delay: 0.7s;
}
.about .banner .highlights .item {
  text-align: center;
}
.about .banner .highlights .item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
}
.about .banner .highlights .item span {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.about .banner .highlights .divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.16);
}
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutHeroPan {
  from { transform: scale(1.1) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .about .banner::before { animation: none; }
  .about .banner .breadcrumb,
  .about .banner .eyebrow,
  .about .banner h1,
  .about .banner p {
    opacity: 1;
    animation: none;
  }
}

/* Our Story â€” text column paired with a photo carrying a shield-shaped
   "years of experience" badge that hangs off its bottom-left corner. */
.about .story .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about .story .content h2 {
  margin-top: 14px;
}
.about .story .divider {
  display: block;
  width: 46px;
  height: 4px;
  background: var(--red-600);
  border-radius: 2px;
  margin: 22px 0 26px;
}
.about .story .content p {
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 18px;
}
.about .story .content .btn {
  margin-top: 12px;
}
.about .story .media {
  position: relative;
}
.about .story .media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.about .story .media:hover img {
  transform: scale(1.03);
}
.about .story .shield {
  position: absolute;
  left: 44px;
  bottom: -40px;
  width: 148px;
  height: 168px;
  background: var(--navy-900);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6px;
  transition-delay: 0.2s;
}
.about .story .shield strong {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
}
.about .story .shield span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
  line-height: 1.4;
}

/* Stats bar â€” dark strip of five icon + counter stats separated by hairline
   dividers, with a soft red glow and a per-item hover lift. */
.about .stats {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about .stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    620px 320px at 12% 0%,
    rgba(226, 36, 31, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.about .stats .row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.about .stats .stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
  position: relative;
  transition:
    opacity 0.7s ease,
    transform 0.3s ease;
}
.about .stats .stat:first-child {
  padding-left: 0;
}
.about .stats .stat:last-child {
  padding-right: 0;
}
.about .stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.about .stats .stat:hover {
  transform: translateY(-5px);
}
.about .stats .stat .icon {
  width: 42px;
  height: 42px;
  color: var(--red-600);
  stroke-width: 1.6;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.about .stats .stat:hover .icon {
  transform: scale(1.12) rotate(-4deg);
}
.about .stats .stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about .stats .stat .label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 6px;
}
.about .stats .stat p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.about .stats .stat:nth-child(1) { transition-delay: 0.05s; }
.about .stats .stat:nth-child(2) { transition-delay: 0.15s; }
.about .stats .stat:nth-child(3) { transition-delay: 0.25s; }
.about .stats .stat:nth-child(4) { transition-delay: 0.35s; }
.about .stats .stat:nth-child(5) { transition-delay: 0.45s; }

/* Mission / Vision / Values â€” three cards on a soft background, each with
   a filled icon badge that gets a pulsing ring on hover, plus a lift. */
.about .mission {
  background: var(--gray-50);
}
/* Shared 3-up card grid â€” reused by Mission/Vision/Values, Why Businesses
   Choose Us, Case Studies, Testimonials (Industries), and Video
   Testimonials + Why Customers Love Us (Reviews). */
.about .mission .grid,
.industries .why .grid,
.industries .testimonials .grid,
.reviews .videos .grid,
.reviews .love .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about .mission .card {
  padding: 40px;
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about .mission .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.about .mission .icon-circle {
  width: 64px;
  height: 64px;
  background: var(--red-600);
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}
.about .mission .icon-circle .icon {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}
/* Shared icon-circle pulse ring â€” expanding ring on hover, reused by the
   About Mission cards, Services entries, and Industries Why cards. */
.about .mission .icon-circle::after,
.services .entries .content .icon-circle::after,
.industries .why .card .icon-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--red-600);
  opacity: 0;
}
.about .mission .card:hover .icon-circle::after,
.services .entries .entry:hover .content .icon-circle::after,
.industries .why .card:hover .icon-circle::after {
  animation: iconPulseRing 1.1s ease-out infinite;
}
@keyframes iconPulseRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.4); opacity: 0; }
}
.about .mission h3 {
  font-size: 17px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 14px;
}
.about .mission .card p {
  color: var(--gray-600);
}
.about .mission .values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 10px;
}
.about .mission .values-list li:last-child {
  margin-bottom: 0;
}
.about .mission .values-list .icon {
  width: 16px;
  height: 16px;
  color: var(--red-600);
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .about .mission .card:hover .icon-circle::after { animation: none; }
}

/* Why Choose Us â€” text + checklist beside a photo carrying three dark
   cards that hang off its bottom edge, each with a gently floating icon. */
.about .why .row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.about .why .content h2 {
  margin-top: 14px;
}
.about .why .content .divider {
  display: block;
  width: 46px;
  height: 4px;
  background: var(--red-600);
  border-radius: 2px;
  margin: 22px 0 24px;
}
.about .why .content > p {
  color: var(--gray-600);
  max-width: 440px;
  margin-bottom: 28px;
}
.about .why .checklist {
  margin-bottom: 32px;
}
.about .why .checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.about .why .checklist li:last-child {
  margin-bottom: 0;
}
.about .why .checklist .icon-circle {
  width: 24px;
  height: 24px;
  background: var(--red-600);
  color: #fff;
  flex-shrink: 0;
}
.about .why .checklist .icon-circle .icon {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}
.about .why .media {
  position: relative;
  padding-bottom: 70px;
}
.about .why .media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about .why .cards {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about .why .cards .card {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about .why .cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 24, 48, 0.35);
}
.about .why .cards .icon {
  width: 40px;
  height: 40px;
  color: #fff;
  stroke-width: 1.6;
  margin: 0 auto 18px;
  animation: whyIconFloat 3s ease-in-out infinite;
}
.about .why .cards .card:nth-child(2) .icon { animation-delay: 0.3s; }
.about .why .cards .card:nth-child(3) .icon { animation-delay: 0.6s; }
@keyframes whyIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.about .why .cards h4 {
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.about .why .cards p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
.about .why .cards .card:nth-child(1) { transition-delay: 0.1s; }
.about .why .cards .card:nth-child(2) { transition-delay: 0.25s; }
.about .why .cards .card:nth-child(3) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .about .why .cards .icon { animation: none; }
}

/* Industries We Serve â€” a flat, evenly-spaced row of icon + label items,
   two-tone (ink + red accent stroke) with a pulsing accent and a
   hover pop that tilts the icon and swaps it to full red. */
.about .industries .eyebrow {
  margin-bottom: 32px;
}
.about .industries .grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.about .industries .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 22px 8px;
  border-radius: var(--radius-md);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    background 0.3s ease;
}
.about .industries .item:hover {
  transform: translateY(-6px);
  background: var(--gray-50);
}
.about .industries .item .icon {
  width: 52px;
  height: 52px;
  color: var(--navy-900);
  stroke-width: 1.5;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}
.about .industries .item:hover .icon {
  transform: scale(1.12) rotate(-4deg);
  color: var(--red-600);
}
.about .industries .item .icon .accent {
  stroke: var(--red-600);
  animation: industryAccentPulse 2.6s ease-in-out infinite;
}
.about .industries .item:nth-child(2) .icon .accent { animation-delay: 0.2s; }
.about .industries .item:nth-child(3) .icon .accent { animation-delay: 0.4s; }
.about .industries .item:nth-child(4) .icon .accent { animation-delay: 0.6s; }
.about .industries .item:nth-child(5) .icon .accent { animation-delay: 0.8s; }
.about .industries .item:nth-child(6) .icon .accent { animation-delay: 1s; }
.about .industries .item:nth-child(7) .icon .accent { animation-delay: 1.2s; }
.about .industries .item:nth-child(8) .icon .accent { animation-delay: 1.4s; }
@keyframes industryAccentPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
.about .industries .item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.about .industries .item:nth-child(1) { transition-delay: 0.03s; }
.about .industries .item:nth-child(2) { transition-delay: 0.09s; }
.about .industries .item:nth-child(3) { transition-delay: 0.15s; }
.about .industries .item:nth-child(4) { transition-delay: 0.21s; }
.about .industries .item:nth-child(5) { transition-delay: 0.27s; }
.about .industries .item:nth-child(6) { transition-delay: 0.33s; }
.about .industries .item:nth-child(7) { transition-delay: 0.39s; }
.about .industries .item:nth-child(8) { transition-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .about .industries .item .icon .accent { animation: none; }
}

/* Closing CTA â€” a photo banner (dark on the left, truck visible on the
   right) with a slow pan, a breathing glow on the button, and a phone
   icon that gives a little periodic "ring" wiggle. */
.about .close {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.about .close::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.97) 0%,
      rgba(10, 24, 48, 0.92) 40%,
      rgba(10, 24, 48, 0.55) 65%,
      rgba(10, 24, 48, 0.15) 100%
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center right;
  animation: closeHeroPan 20s ease-in-out infinite alternate;
}
@keyframes closeHeroPan {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.15) translate(-1.5%, -1%); }
}
.about .close .row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about .close .text {
  max-width: 480px;
}
.about .close .text h2 {
  color: #fff;
  margin: 12px 0 14px;
}
.about .close .text p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
}
.about .close .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.about .close .actions .btn-primary {
  animation: closeCtaGlow 2.4s ease-in-out infinite;
}
@keyframes closeCtaGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(226, 36, 31, 0.32); }
  50% { box-shadow: 0 10px 34px rgba(226, 36, 31, 0.55), 0 0 0 6px rgba(226, 36, 31, 0.12); }
}
.about .close .actions .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.about .close .actions .phone .icon {
  width: 16px;
  height: 16px;
  color: var(--red-600);
  transform-origin: 70% 30%;
  animation: phoneRingWiggle 3s ease-in-out infinite;
}
@keyframes phoneRingWiggle {
  0%, 100% { transform: rotate(0); }
  2% { transform: rotate(-15deg); }
  4% { transform: rotate(15deg); }
  6% { transform: rotate(-10deg); }
  8% { transform: rotate(10deg); }
  10% { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .about .close::before { animation: none; }
  .about .close .actions .btn-primary { animation: none; }
  .about .close .actions .phone .icon { animation: none; }
}

/* ===========================
   PAGE: SERVICES
=========================== */

/* Hero banner â€” breadcrumb-first layout (reusing the shared .banner
   component's default order) with a slow Ken Burns pan and a staggered
   fade-up entrance, matching the About hero's motion language. */
.services .banner {
  background: none;
  position: relative;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.services .banner::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.95),
      rgba(10, 24, 48, 0.82) 45%,
      rgba(10, 24, 48, 0.45)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center 75%;
  animation: servicesHeroPan 18s ease-in-out infinite alternate;
}
.services .banner .row {
  max-width: 880px;
}
.services .banner .breadcrumb,
.services .banner h1,
.services .banner .subheading,
.services .banner .divider,
.services .banner p {
  opacity: 0;
  animation: servicesFadeUp 0.9s ease forwards;
}
.services .banner .breadcrumb { animation-delay: 0.1s; }
.services .banner h1 { animation-delay: 0.25s; }
.services .banner .subheading { animation-delay: 0.4s; }
.services .banner .divider { animation-delay: 0.5s; }
.services .banner p { animation-delay: 0.6s; }
.services .banner h1 {
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.services .banner h1 em {
  font-style: normal;
  color: var(--red-600);
}
.services .banner .subheading {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 22px;
}
.services .banner .divider {
  display: block;
  width: 46px;
  height: 4px;
  background: var(--red-600);
  border-radius: 2px;
  margin-bottom: 20px;
}
.services .banner p {
  margin-top: 0;
}
@keyframes servicesHeroPan {
  from { transform: scale(1.1) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}
@keyframes servicesFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .services .banner::before { animation: none; }
  .services .banner .breadcrumb,
  .services .banner h1,
  .services .banner .subheading,
  .services .banner .divider,
  .services .banner p {
    opacity: 1;
    animation: none;
  }
}

/* Service entries â€” photo / details / checklist-panel rows. Each column
   reveals from a different direction (photo from the left, panel from
   the right, text on a fade-up) so the row feels like it assembles
   itself rather than just fading in as one block. */
.services .entries .entry {
  display: grid;
  grid-template-columns: 380px 1fr 300px;
  gap: 40px;
  align-items: start;
  overflow: hidden;
  padding: 4px;
  margin: -4px;
}
.services .entries .entry + .entry {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-100);
}
.services .entries .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.services .entries .media.in-view {
  opacity: 1;
  transform: translateX(0);
}
.services .entries .media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.services .entries .media:hover img {
  transform: scale(1.06);
}
.services .entries .content {
  position: relative;
  padding-left: 104px;
  min-height: 84px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}
.services .entries .content.in-view {
  opacity: 1;
  transform: translateY(0);
}
.services .entries .content .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 84px;
  height: 84px;
  background: var(--red-600);
  color: #fff;
}
.services .entries .content .icon-circle .icon {
  width: 36px;
  height: 36px;
}
.services .entries .content h3 {
  font-size: 30px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.services .entries .content p {
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 26px;
}
.services .entries .content .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.services .entries .content .tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.services .entries .content .tags .icon {
  width: 28px;
  height: 28px;
  color: var(--navy-900);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.services .entries .content .tags .icon .accent {
  stroke: var(--red-600);
}
.services .entries .panel {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s,
    box-shadow 0.3s ease;
}
.services .entries .panel.in-view {
  opacity: 1;
  transform: translateX(0);
}
.services .entries .panel:hover {
  box-shadow: var(--shadow-md);
}
.services .entries .panel .checklist {
  margin-bottom: 28px;
}
.services .entries .panel .checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 22px;
}
.services .entries .panel .checklist li:last-child {
  margin-bottom: 0;
}
.services .entries .panel .checklist .icon {
  width: 15px;
  height: 15px;
  color: var(--red-600);
  stroke-width: 3;
  flex-shrink: 0;
}
.services .entries .panel .btn-dark {
  width: 100%;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .services .entries .entry:hover .content .icon-circle::after { animation: none; }
}

/* Need Help CTA bar â€” a dark rounded strip with a "ringing phone" icon
   (pulsing ping rings + a periodic wiggle), a glowing quote button, and a
   call block set off by a divider. */
.services .help .bar {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.services .help .bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 260px at 0% 0%,
    rgba(226, 36, 31, 0.14),
    transparent 70%
  );
  pointer-events: none;
}
.services .help .left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
}
.services .help .left .icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid var(--red-600);
  color: var(--red-600);
  flex-shrink: 0;
}
.services .help .left .icon-circle .icon {
  width: 24px;
  height: 24px;
  transform-origin: 60% 40%;
  animation: phoneRingWiggle 3s ease-in-out infinite;
}
/* Shared icon-circle "ping" rings â€” double expanding-ring pulse behind a
   phone icon, reused by the Services Help bar and Contact office assist card. */
.services .help .left .icon-circle::before,
.services .help .left .icon-circle::after,
.contact .resources .office-col .call .icon-circle::before,
.contact .resources .office-col .call .icon-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red-600);
  opacity: 0;
}
.services .help .left .icon-circle::before,
.contact .resources .office-col .call .icon-circle::before {
  animation: iconPingRing 2.4s ease-out infinite;
}
.services .help .left .icon-circle::after,
.contact .resources .office-col .call .icon-circle::after {
  animation: iconPingRing 2.4s ease-out infinite 1.2s;
}
@keyframes iconPingRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.services .help .left h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}
.services .help .left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  max-width: 380px;
}
.services .help .right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}
.services .help .right .btn-primary {
  animation: helpCtaGlow 2.4s ease-in-out infinite;
}
@keyframes helpCtaGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(226, 36, 31, 0.32); }
  50% { box-shadow: 0 10px 34px rgba(226, 36, 31, 0.55), 0 0 0 6px rgba(226, 36, 31, 0.12); }
}
.services .help .right .divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}
.services .help .call {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.services .help .call .icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  flex-shrink: 0;
}
.services .help .call .icon-circle .icon {
  width: 18px;
  height: 18px;
}
.services .help .call .label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.services .help .call strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-family: var(--ff-head);
}
@media (prefers-reduced-motion: reduce) {
  .services .help .left .icon-circle .icon { animation: none; }
  .services .help .left .icon-circle::before,
  .services .help .left .icon-circle::after { animation: none; }
  .services .help .right .btn-primary { animation: none; }
}

/* ===========================
   PAGE: CONTACT
=========================== */

/* Hero banner â€” same Ken Burns pan + staggered fade-up language as the
   About/Services heroes, with extra bottom padding so the form card can
   float up and overlap its lower edge. */
.contact .banner {
  background: none;
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact .banner::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.95),
      rgba(10, 24, 48, 0.82) 45%,
      rgba(10, 24, 48, 0.45)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center 75%;
  animation: contactHeroPan 18s ease-in-out infinite alternate;
}
.contact .banner .row {
  max-width: 880px;
}
.contact .banner .breadcrumb,
.contact .banner h1,
.contact .banner .subheading,
.contact .banner p,
.contact .banner .actions {
  opacity: 0;
  animation: contactFadeUp 0.9s ease forwards;
}
.contact .banner .breadcrumb { animation-delay: 0.1s; }
.contact .banner h1 { animation-delay: 0.25s; }
.contact .banner .subheading { animation-delay: 0.4s; }
.contact .banner p { animation-delay: 0.55s; }
.contact .banner .actions { animation-delay: 0.7s; }
.contact .banner h1 {
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.contact .banner h1 em {
  font-style: normal;
  color: var(--red-600);
}
.contact .banner .subheading {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.contact .banner p {
  margin-top: 0;
  max-width: 600px;
}
.contact .banner .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@keyframes contactHeroPan {
  from { transform: scale(1.1) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}
@keyframes contactFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact .banner::before { animation: none; }
  .contact .banner .breadcrumb,
  .contact .banner h1,
  .contact .banner .subheading,
  .contact .banner p,
  .contact .banner .actions {
    opacity: 1;
    animation: none;
  }
}

/* Form + Contact Info â€” a white form card beside a dark info panel,
   pulled up to overlap the hero's lower edge. Each half fades up
   independently (info panel slightly delayed) and inputs get a red
   focus glow; the submit button gets a breathing glow to draw the eye. */
.contact .form-wrap {
  position: relative;
  z-index: 5;
  margin-top: -130px;
}
.contact .form-wrap .row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}
.contact .form-card,
.contact .info-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.contact .form-card.in-view,
.contact .info-panel.in-view {
  opacity: 1;
  transform: translateY(0);
}
.contact .info-panel {
  transition-delay: 0.15s;
}
.contact .form-card {
  background: #fff;
  padding: 40px;
}
.contact .form-card .head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.contact .form-card .head .icon {
  width: 26px;
  height: 26px;
  color: var(--red-600);
}
.contact .form-card .head h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
/* Quote form â€” shared by the Contact page's in-page form and the quote
   modal used site-wide, both mounted from the same template (include.js). */
.quote-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
}
.quote-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.quote-form .field.full {
  grid-column: 1 / -1;
}
.quote-form .field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.quote-form .field span em {
  font-style: normal;
  color: var(--red-600);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  width: 100%;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(226, 36, 31, 0.12);
}
.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}
.quote-form .select-field .icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  color: var(--gray-500);
  pointer-events: none;
  stroke-width: 2;
}
.quote-form .icon-field input {
  padding-right: 40px;
}
.quote-form .icon-field .icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  color: var(--gray-500);
  pointer-events: none;
}
.quote-form .submit {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  animation: contactSubmitGlow 2.6s ease-in-out infinite;
}
.quote-form .submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.quote-form__error {
  display: none;
  font-size: 13.5px;
  color: var(--red-600);
  background: var(--red-50);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}
.quote-form__error.is-visible {
  display: block;
}
@keyframes contactSubmitGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(226, 36, 31, 0.32); }
  50% { box-shadow: 0 10px 34px rgba(226, 36, 31, 0.5), 0 0 0 6px rgba(226, 36, 31, 0.1); }
}
.contact .info-panel {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  padding: 40px 34px;
  color: #fff;
}
.contact .info-panel h3 {
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.contact .info-panel .divider,
.contact .resources .divider {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red-600);
  border-radius: 2px;
  margin-bottom: 26px;
}
.contact .info-panel ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact .info-panel li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact .info-panel .icon-circle {
  width: 38px;
  height: 38px;
  background: var(--red-600);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(226, 36, 31, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.contact .info-panel .icon-circle .icon {
  width: 17px;
  height: 17px;
}
.contact .info-panel li:hover .icon-circle {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(226, 36, 31, 0.5);
}
.contact .info-panel li strong {
  display: block;
  font-size: 14.5px;
  color: #fff;
  margin-bottom: 4px;
}
.contact .info-panel li > div > span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.contact .info-panel .hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.contact .info-panel .hours span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}
.contact .info-panel .hours em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
}
.contact .info-panel .hours b {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
@media (prefers-reduced-motion: reduce) {
  .quote-form .submit { animation: none; }
}

/* Trust bar â€” light card of 4 icon+copy items separated by hairline
   dividers. Each icon carries a small decorative "spark" mark that
   flickers on a staggered loop, plus a hover lift + icon pop. */
.contact .trust .bar {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.contact .trust .item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  position: relative;
  border-radius: var(--radius-md);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    background 0.3s ease;
}
.contact .trust .item:first-child {
  padding-left: 0;
}
.contact .trust .item:last-child {
  padding-right: 0;
}
.contact .trust .item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: var(--gray-100);
}
.contact .trust .item:hover {
  transform: translateY(-5px);
  background: #fff;
}
.contact .trust .item .icon {
  width: 44px;
  height: 44px;
  color: var(--red-600);
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact .trust .item:hover .icon {
  transform: scale(1.12) rotate(-4deg);
}
.contact .trust .item .icon .spark {
  animation: trustSparkFlicker 2.4s ease-in-out infinite;
}
.contact .trust .item:nth-child(2) .icon .spark { animation-delay: 0.3s; }
.contact .trust .item:nth-child(3) .icon .spark { animation-delay: 0.6s; }
.contact .trust .item:nth-child(4) .icon .spark { animation-delay: 0.9s; }
@keyframes trustSparkFlicker {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.contact .trust .item h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.contact .trust .item p,
.contact .resources .services-col .text p {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.5;
}
@media (prefers-reduced-motion: reduce) {
  .contact .trust .item .icon .spark { animation: none; }
}

/* Resources â€” services list / FAQ accordion / office+map, three equal
   columns. Each column fades up independently; the FAQ items animate
   open with a grid-rows trick (no JS height measuring needed) and a
   rotating chevron; the map and call-out fade/scale in beneath it. */
.contact .resources .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  align-items: start;
}
.contact .resources h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy-900);
  margin-bottom: 14px;
}

/* Services list */
.contact .resources .services-col .list li {
  display: grid;
  grid-template-columns: 110px 32px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.contact .resources .services-col .list li:last-child {
  margin-bottom: 0;
}
.contact .resources .services-col .thumb {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact .resources .services-col .thumb img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.contact .resources .services-col .list li:hover .thumb img {
  transform: scale(1.1);
}
.contact .resources .services-col .list > li > .icon {
  width: 30px;
  height: 30px;
  color: var(--red-600);
  stroke-width: 1.6;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact .resources .services-col .list li:hover > .icon {
  transform: scale(1.15) rotate(-5deg);
}
.contact .resources .services-col .text h4 {
  font-size: 15px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

/* FAQ accordion â€” page-specific shell (flat card, numbered badge, chevron).
   Shared question-row/expand-collapse mechanics live in the FAQ accordion
   block near the top of this file (.faq-item .q, .text, .a, .inner). */
.contact .resources .faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.3s ease;
}
.contact .resources .faq-item.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact .resources .faq-item .q .icon-circle {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.contact .resources .faq-item.active .q .icon-circle {
  background: var(--red-600);
  color: #fff;
}
.contact .resources .faq-item .chevron {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact .resources .faq-item.active .chevron {
  transform: rotate(180deg);
  color: var(--red-600);
}
.contact .resources .faq-item .a p {
  padding: 0 20px 20px 62px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Office + map */
.contact .resources .office-col p {
  color: var(--gray-600);
  margin-bottom: 24px;
}
.contact .resources .office-col .map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.contact .resources .office-col .map.in-view {
  opacity: 1;
  transform: scale(1);
}
.contact .resources .office-col .map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.contact .resources .office-col .assist {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.contact .resources .office-col .assist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    360px 200px at 100% 0%,
    rgba(226, 36, 31, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.contact .resources .office-col .assist h4 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.contact .resources .office-col .assist p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-bottom: 16px;
}
.contact .resources .office-col .call {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red-600);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 19px;
}
.contact .resources .office-col .call .icon-circle {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(226, 36, 31, 0.14);
  color: var(--red-600);
  flex-shrink: 0;
}
.contact .resources .office-col .call .icon-circle .icon,
.contact .cta-band .call-box .icon-circle .icon {
  width: 16px;
  height: 16px;
  transform-origin: 60% 40%;
  animation: phoneRingWiggle 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .contact .resources .office-col .call .icon-circle .icon { animation: none; }
  .contact .resources .office-col .call .icon-circle::before,
  .contact .resources .office-col .call .icon-circle::after { animation: none; }
}

/* Closing CTA band â€” a truck photo bleeds in from the left edge and
   fades into solid navy, with a glowing quote button and a bordered
   "call now" box (ringing icon) on the right. */
.contact .cta-band .bar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 34px 40px 34px 300px;
}
.contact .cta-band .bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 48, 0.2) 0%,
      rgba(10, 24, 48, 0.75) 25%,
      rgba(10, 24, 48, 0.95) 42%,
      rgba(10, 24, 48, 0.99) 60%
    ),
    url("../images/hero-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 300% auto;
  background-position: 0 0, 78% 46%;
}
.contact .cta-band .text h3 {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.contact .cta-band .text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 480px;
}
.contact .cta-band .actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.contact .cta-band .actions .btn-primary {
  animation: ctaBandGlow 2.4s ease-in-out infinite;
}
@keyframes ctaBandGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(226, 36, 31, 0.32); }
  50% { box-shadow: 0 10px 34px rgba(226, 36, 31, 0.55), 0 0 0 6px rgba(226, 36, 31, 0.12); }
}
.contact .cta-band .call-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  color: #fff;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.contact .cta-band .call-box:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.contact .cta-band .call-box .icon-circle {
  position: relative;
  width: 34px;
  height: 34px;
  background: transparent;
  color: #fff;
  flex-shrink: 0;
}
.contact .cta-band .call-box .text {
  display: flex;
  flex-direction: column;
}
.contact .cta-band .call-box .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.6);
}
.contact .cta-band .call-box strong {
  font-size: 16px;
  color: #fff;
  font-family: var(--ff-head);
}
@media (prefers-reduced-motion: reduce) {
  .contact .cta-band .actions .btn-primary { animation: none; }
  .contact .cta-band .call-box .icon-circle .icon { animation: none; }
}

/* ===========================
   PAGE: INDUSTRIES
=========================== */

/* 1. Hero â€” dark gradient with a Ken Burns photo and two floating
   gradient "blobs" for a premium enterprise feel, staggered fade-up. */
.industries .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.industries .hero::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -2;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.95),
      rgba(10, 24, 48, 0.86) 45%,
      rgba(10, 24, 48, 0.6)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center 75%;
  animation: industriesHeroPan 20s ease-in-out infinite alternate;
}
@keyframes industriesHeroPan {
  from { transform: scale(1.1) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}
/* Shared floating gradient "blob" decoration â€” Industries + Reviews hero. */
.industries .hero .blob,
.reviews .hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.industries .hero .blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(226, 36, 31, 0.7), transparent 70%);
  top: -140px;
  right: 8%;
  animation: industriesBlobFloat 11s ease-in-out infinite;
}
.industries .hero .blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 70%);
  bottom: -100px;
  left: 4%;
  animation: industriesBlobFloat 13s ease-in-out infinite reverse;
}
@keyframes industriesBlobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}
.industries .hero .row {
  max-width: 880px;
}
.industries .hero .breadcrumb,
.industries .hero .eyebrow,
.industries .hero h1,
.industries .hero p,
.industries .hero .actions {
  opacity: 0;
  animation: industriesFadeUp 0.9s ease forwards;
}
.industries .hero .breadcrumb { animation-delay: 0.1s; }
.industries .hero .eyebrow { animation-delay: 0.22s; }
.industries .hero h1 { animation-delay: 0.35s; }
.industries .hero p { animation-delay: 0.5s; }
.industries .hero .actions { animation-delay: 0.65s; }
@keyframes industriesFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.industries .hero .eyebrow {
  color: #ff8f8b;
}
.industries .hero .eyebrow::before {
  background: #ff8f8b;
}
.industries .hero h1 {
  color: #fff;
  font-size: 52px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.industries .hero h1 em {
  font-style: normal;
  color: var(--red-600);
}
.industries .hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 26px;
}
.industries .hero .actions {
  margin-top: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .industries .hero::before,
  .industries .hero .blob { animation: none; }
  .industries .hero .breadcrumb,
  .industries .hero .eyebrow,
  .industries .hero h1,
  .industries .hero p,
  .industries .hero .actions {
    opacity: 1;
    animation: none;
  }
}

/* 2. Trusted By */
.industries .trusted {
  background: var(--gray-50);
}
.industries .trusted .stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.industries .trusted .stat {
  text-align: center;
}
.industries .trusted .stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-900);
}
.industries .trusted .stat span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.industries .trusted .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.55;
}
.industries .trusted .logos span {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3. Industries Grid */
.industries .grid-section {
  background: #fff;
}
.industries .grid-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.industries .grid-section .card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.industries .grid-section .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.industries .grid-section .card .icon-circle {
  width: 60px;
  height: 60px;
  background: var(--red-50);
  color: var(--red-600);
  margin-bottom: 20px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.industries .grid-section .card .icon-circle .icon {
  width: 26px;
  height: 26px;
}
.industries .grid-section .card:hover .icon-circle {
  background: var(--red-600);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.industries .grid-section .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.industries .grid-section .card > p {
  color: var(--gray-600);
  /* font-size: 15px; */
  margin-bottom: 16px;
}
.industries .grid-section .card .tags {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.industries .grid-section .card .tags li {
  /* font-size: 12.5px; */
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}
.industries .grid-section .card .tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-600);
}
.industries .grid-section .card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--red-600);
}
.industries .grid-section .card .more .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.industries .grid-section .card:hover .more .icon {
  transform: translateX(3px);
}

/* 4. Challenges & Solutions */
.industries .challenges {
  background: var(--gray-50);
}
.industries .challenges .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.industries .challenges h2 {
  margin: 10px 0 26px;
}
.industries .challenges ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.industries .challenges li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.industries .challenges .problems .icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(226, 36, 31, 0.1);
  color: var(--red-600);
  flex-shrink: 0;
}
.industries .challenges .solutions .icon-circle {
  width: 32px;
  height: 32px;
  background: var(--red-600);
  color: #fff;
  flex-shrink: 0;
}
.industries .challenges .icon-circle .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

/* 5. Why Businesses Choose Us */
.industries .why {
  background: #fff;
}
.industries .why .card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.industries .why .card:hover,
.reviews .love .card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.industries .why .card .icon-circle {
  width: 60px;
  height: 60px;
  background: var(--red-600);
  color: #fff;
  margin: 0 auto 18px;
  position: relative;
}
.industries .why .card .icon-circle .icon {
  width: 26px;
  height: 26px;
}
.industries .why .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.industries .why .card p {
  color: var(--gray-600);
  font-size: 15px;
}

/* 6. Success Metrics */
.industries .metrics {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.industries .metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 300px at 85% 0%,
    rgba(226, 36, 31, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.industries .metrics .row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.industries .metrics .stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
}
.industries .metrics .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.industries .metrics strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}
.industries .metrics span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}

/* 7. Our Process */
.industries .process {
  background: #fff;
}
.industries .process .track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 20px;
}
.industries .process .track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-100);
}
.industries .process .step {
  text-align: center;
  position: relative;
}
.industries .process .dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.industries .process .step:hover .dot {
  transform: scale(1.12) rotate(-6deg);
}
.industries .process .dot .icon {
  width: 22px;
  height: 22px;
}
.industries .process h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.industries .process p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* 8. Featured Case Studies
.industries .cases {
  background: var(--gray-50);
}
.industries .cases .card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.industries .cases .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.industries .cases .tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--red-50);
  color: var(--red-600);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.industries .cases h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.industries .cases dl {
  margin-bottom: 20px;
}
.industries .cases dt {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 12px;
}
.industries .cases dt:first-child {
  margin-top: 0;
}
.industries .cases dd {
  font-size: 14.5px;
  color: var(--gray-600);
  margin-top: 4px;
  line-height: 1.5;
}
.industries .cases .result {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.industries .cases .result strong {
  font-size: 30px;
  font-family: var(--ff-head);
  font-weight: 800;
  color: var(--red-600);
}
.industries .cases .result span {
  font-size: 12.5px;
  color: var(--gray-600);
}
*/

/* 9. Fleet & Logistics Technology */
.industries .tech {
  background: #fff;
}
.industries .tech .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industries .tech .badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  text-align: center;
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.industries .tech .badge:hover {
  transform: translateY(-6px) scale(1.03);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.industries .tech .badge .icon {
  width: 34px;
  height: 34px;
  color: var(--red-600);
  transition: transform 0.3s ease;
}
.industries .tech .badge:hover .icon {
  transform: scale(1.15) rotate(-6deg);
}
.industries .tech .badge span {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
}

/* 10. Testimonials */
.industries .testimonials {
  background: var(--gray-50);
}
.industries .testimonials .card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.industries .testimonials .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.industries .testimonials .stars,
.reviews .grid-reviews .stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 14px;
}
.industries .testimonials .stars .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}
.industries .testimonials .card > p {
  color: var(--ink);
  /* font-size: 15.5px; */
  line-height: 1.6;
  margin-bottom: 22px;
}
.industries .testimonials .person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.industries .testimonials .avatar {
  width: 44px;
  height: 44px;
  font-size: 14px;
}
.industries .testimonials .person strong {
  display: block;
  font-size: 16px;
  color: var(--navy-900);
}
.industries .testimonials .person span {
  font-size: 14px;
  color: var(--gray-600);
}

/* 11. FAQ â€” two-column layout: a floating flat-style illustration on the
   left (decorative blurred shapes behind it, gentle bob animation) beside
   an accordion with a plus/minus toggle and a colored-left-border active
   state, followed by a bottom "still have questions" CTA card. */
.industries .faq {
  background: #fff;
}
.industries .faq .row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

/* Illustration â€” shared FAQ illustration wrapper + blurred accent shapes
   (Industries + Reviews). Each page's shape-1 keeps its own tint. */
.industries .faq .illustration,
.reviews .faq .illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.industries .faq .illustration .shape,
.reviews .faq .illustration .shape {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.industries .faq .illustration .shape-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(226, 36, 31, 0.45), transparent 70%);
  top: -10px;
  left: 4%;
}
.industries .faq .illustration .shape-2,
.reviews .faq .illustration .shape-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(10, 24, 48, 0.3), transparent 70%);
  bottom: -10px;
  right: 8%;
}
.industries .faq .illustration .art,
.reviews .faq .illustration .art {
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
  animation: faqArtFloat 4.5s ease-in-out infinite;
}
@keyframes faqArtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.industries .faq .illustration .bubble {
  transform-origin: 304px 87px;
  animation: faqBubblePulse 2.6s ease-in-out infinite;
}
@keyframes faqBubblePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.industries .faq .illustration .chat-dots circle {
  animation: faqDotPulse 1.3s ease-in-out infinite;
}
.industries .faq .illustration .chat-dots circle:nth-child(2) { animation-delay: 0.15s; }
.industries .faq .illustration .chat-dots circle:nth-child(3) { animation-delay: 0.3s; }
@keyframes faqDotPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Bottom "still have questions" CTA card */
.industries .faq .faq-cta {
  background: linear-gradient(135deg, var(--gray-50), #fff);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.industries .faq .faq-cta:hover {
  box-shadow: var(--shadow-md);
}
.industries .faq .faq-cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.industries .faq .faq-cta p {
  color: var(--gray-600);
}
.industries .faq .faq-cta .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .industries .faq .illustration .art,
  .industries .faq .illustration .bubble,
  .industries .faq .illustration .chat-dots circle {
    animation: none;
  }
}

/* 12. Final CTA Banner */
.industries .cta-final .bar {
  background: linear-gradient(120deg, var(--red-600), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.industries .cta-final .bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 260px at 15% 0%,
    rgba(255, 255, 255, 0.14),
    transparent 70%
  );
  pointer-events: none;
}
.industries .cta-final h2,
.reviews .cta-final h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 14px;
}
.industries .cta-final p,
.reviews .cta-final p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.industries .cta-final .btn {
  position: relative;
  z-index: 1;
}

/* ===========================
   PAGE: REVIEWS
=========================== */

/* 1. Hero â€” same photo + blob language as the Industries hero. */
.reviews .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.reviews .hero::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -2;
  background:
    linear-gradient(
      100deg,
      rgba(10, 24, 48, 0.95),
      rgba(10, 24, 48, 0.86) 45%,
      rgba(10, 24, 48, 0.6)
    ),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center 75%;
  animation: reviewsHeroPan 20s ease-in-out infinite alternate;
}
@keyframes reviewsHeroPan {
  from { transform: scale(1.1) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}
.reviews .hero .blob-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(226, 36, 31, 0.7), transparent 70%);
  top: -120px;
  right: 10%;
  animation: reviewsBlobFloat 11s ease-in-out infinite;
}
.reviews .hero .blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 70%);
  bottom: -90px;
  left: 6%;
  animation: reviewsBlobFloat 13s ease-in-out infinite reverse;
}
@keyframes reviewsBlobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}
.reviews .hero .row {
  max-width: 880px;
}
.reviews .hero .breadcrumb,
.reviews .hero .eyebrow,
.reviews .hero h1,
.reviews .hero p,
.reviews .hero .actions {
  opacity: 0;
  animation: reviewsFadeUp 0.9s ease forwards;
}
.reviews .hero .breadcrumb { animation-delay: 0.1s; }
.reviews .hero .eyebrow { animation-delay: 0.22s; }
.reviews .hero h1 { animation-delay: 0.35s; }
.reviews .hero p { animation-delay: 0.5s; }
.reviews .hero .actions { animation-delay: 0.65s; }
@keyframes reviewsFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reviews .hero .eyebrow { color: #ff8f8b; }
.reviews .hero .eyebrow::before { background: #ff8f8b; }
.reviews .hero h1 {
  color: #fff;
  font-size: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.reviews .hero h1 em { font-style: normal; color: var(--red-600); }
.reviews .hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-bottom: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .reviews .hero::before, .reviews .hero .blob { animation: none; }
  .reviews .hero .breadcrumb, .reviews .hero .eyebrow, .reviews .hero h1,
  .reviews .hero p, .reviews .hero .actions { opacity: 1; animation: none; }
}

/* 2. Overall Rating */
.reviews .rating { background: var(--gray-50); }
.reviews .rating .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reviews .rating .stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .rating .stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.reviews .rating .stat .stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 10px;
}
.reviews .rating .stat .stars .icon {
  width: 16px; height: 16px; fill: currentColor; stroke: none;
}
.reviews .rating .stat .icon-circle {
  width: 50px; height: 50px;
  background: var(--red-50); color: var(--red-600);
  margin: 0 auto 12px;
}
.reviews .rating .stat .icon-circle .icon { width: 22px; height: 22px; }
.reviews .rating .stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.reviews .rating .stat span {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 600;
}

/* 3. Featured Review */
.reviews .featured { background: #fff; }
.reviews .featured .card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reviews .featured .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 100% 0%, rgba(226, 36, 31, 0.2), transparent 70%);
  pointer-events: none;
}
.reviews .featured .quote-mark {
  width: 54px; height: 54px;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 10px;
}
.reviews .featured .stars {
  display: flex; gap: 4px; color: #f5a623; margin-bottom: 22px;
}
.reviews .featured .stars .icon { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.reviews .featured .card > p {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.reviews .featured .person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews .featured .person .avatar {
  width: 56px; height: 56px; font-size: 18px;
  background: var(--red-600);
}
.reviews .featured .person strong { display: block; font-size: 17px; }
.reviews .featured .person span { font-size: 13.5px; color: rgba(255, 255, 255, 0.65); }
.reviews .featured .company-logo {
  margin-left: auto;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* 4. Customer Reviews Grid â€” CSS-columns masonry, no JS needed */
.reviews .grid-reviews { background: var(--gray-50); }
.reviews .grid-reviews .masonry {
  column-count: 3;
  column-gap: 28px;
}
.reviews .grid-reviews .card {
  break-inside: avoid;
  margin-bottom: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .grid-reviews .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.reviews .grid-reviews .quote-icon {
  width: 30px; height: 30px;
  color: var(--red-50);
  position: absolute;
  top: 20px; right: 22px;
}
.reviews .grid-reviews .stars .icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.reviews .grid-reviews .card > p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}
.reviews .grid-reviews .person {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.reviews .grid-reviews .person .avatar { width: 44px; height: 44px; font-size: 14px; }
.reviews .grid-reviews .person strong { display: block; font-size: 15px; color: var(--navy-900); }
.reviews .grid-reviews .person span { font-size: 13px; color: var(--gray-600); }
.reviews .grid-reviews .meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-100); padding-top: 14px;
}
.reviews .grid-reviews .verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: var(--red-600);
}
.reviews .grid-reviews .verified .icon { width: 13px; height: 13px; }
.reviews .grid-reviews .date { font-size: 12.5px; color: var(--gray-500); }

/* 5. Video Testimonials */
.reviews .videos { background: #fff; }
.reviews .videos .card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .videos .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.reviews .videos .thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.reviews .videos .thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.reviews .videos .card:hover .thumb img { transform: scale(1.08); }
.reviews .videos .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 24, 48, 0.55), rgba(10, 24, 48, 0.1));
}
.reviews .videos .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.reviews .videos .play .icon { width: 24px; height: 24px; margin-left: 3px; }
.reviews .videos .card:hover .play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--red-600);
  color: #fff;
}
.reviews .videos .duration {
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(10, 24, 48, 0.75);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  z-index: 1;
}
.reviews .videos .info { padding: 20px; }
.reviews .videos .info strong { display: block; font-size: 16px; color: var(--navy-900); margin-bottom: 6px; }
.reviews .videos .info span { font-size: 13px; color: var(--gray-600); }

/* 6. Client Success Stories â€” horizontal split cards
.reviews .stories { background: var(--gray-50); }
.reviews .stories .list { display: flex; flex-direction: column; gap: 24px; }
.reviews .stories .story {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .stories .story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reviews .stories .story .tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--red-50);
  color: var(--red-600);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.reviews .stories .story h3 { font-size: 20px; }
.reviews .stories .story .body dl { display: flex; flex-direction: column; gap: 12px; }
.reviews .stories .story .body dt {
  font-size: 11px; text-transform: uppercase; font-weight: 700;
  color: var(--navy-900); letter-spacing: 0.3px; margin-bottom: 3px;
}
.reviews .stories .story .body dd { font-size: 14.5px; color: var(--gray-600); line-height: 1.5; }
.reviews .stories .story .result {
  text-align: center;
  border-left: 1px solid var(--gray-100);
  padding-left: 26px;
}
.reviews .stories .story .result strong {
  display: block; font-family: var(--ff-head); font-size: 34px; font-weight: 800; color: var(--red-600);
}
.reviews .stories .story .result span { font-size: 12.5px; color: var(--gray-600); display: block; margin-bottom: 14px; }
.reviews .stories .story .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--navy-900);
}
.reviews .stories .story .more .icon { width: 15px; height: 15px; transition: transform 0.25s ease; }
.reviews .stories .story:hover .more .icon { transform: translateX(3px); }
*/

/* 7. Why Customers Love Us */
.reviews .love { background: #fff; }
.reviews .love .card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.reviews .love .card .icon-circle {
  width: 56px; height: 56px;
  background: var(--red-50); color: var(--red-600);
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.reviews .love .card .icon-circle .icon { width: 24px; height: 24px; }
.reviews .love .card:hover .icon-circle { background: var(--red-600); color: #fff; transform: scale(1.1) rotate(-5deg); }
.reviews .love .card h3 { font-size: 20px; margin-bottom: 8px; }
.reviews .love .card p { color: var(--gray-600); font-size: 15px; }

/* 8. Review Sources
.reviews .sources { background: var(--gray-50); }
.reviews .sources .card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.7s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .sources .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.reviews .sources .card .logo {
  display: block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}
.reviews .sources .logo.google { color: #4285F4; }
.reviews .sources .logo.facebook { color: #1877F2; }
.reviews .sources .logo.bbb { color: var(--navy-900); }
.reviews .sources .logo.yelp { color: #d32323; }
.reviews .sources .stars { display: flex; justify-content: center; gap: 3px; color: #f5a623; margin-bottom: 12px; }
.reviews .sources .stars .icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.reviews .sources .card strong { display: block; font-family: var(--ff-head); font-size: 28px; font-weight: 800; color: var(--navy-900); }
.reviews .sources .card > span { display: block; font-size: 14px; color: var(--gray-600); margin-bottom: 18px; }
.reviews .sources .btn { width: 100%; justify-content: center; font-size: 16px; padding: 12px 18px; }
*/

/* 9. Customer Wall â€” floating avatar bubbles around a central counter */
.reviews .wall { background: #fff; overflow: hidden; }
.reviews .wall .cloud {
  position: relative;
  max-width: 640px;
  height: 380px;
  margin: 0 auto;
}
.reviews .wall .hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.reviews .wall .hub strong { font-family: var(--ff-head); font-size: 30px; font-weight: 800; }
.reviews .wall .hub span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.reviews .wall .node {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--red-600);
  animation: wallFloat 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews .wall .node:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(226, 36, 31, 0.14), var(--shadow-md);
}
.reviews .wall .n1 { top: 6%;  left: 18%; animation-delay: 0s; }
.reviews .wall .n2 { top: 4%;  left: 62%; animation-delay: 0.4s; width: 46px; height: 46px; }
.reviews .wall .n3 { top: 24%; left: 84%; animation-delay: 0.8s; }
.reviews .wall .n4 { top: 46%; left: 4%;  animation-delay: 1.2s; width: 50px; height: 50px; }
.reviews .wall .n5 { top: 70%; left: 14%; animation-delay: 1.6s; }
.reviews .wall .n6 { top: 78%; left: 62%; animation-delay: 2s; width: 48px; height: 48px; }
.reviews .wall .n7 { top: 56%; left: 88%; animation-delay: 2.4s; }
.reviews .wall .n8 { top: 14%; left: 40%; animation-delay: 2.8s; width: 40px; height: 40px; font-size: 11px; }
.reviews .wall .n9 { top: 84%; left: 38%; animation-delay: 3.2s; width: 40px; height: 40px; font-size: 11px; }
@keyframes wallFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews .wall .node { animation: none; }
}

/* 10. FAQ â€” illustration + accordion, matching the Industries pattern
   with a distinct "5-star review" illustration. */
.reviews .faq { background: var(--gray-50); }
.reviews .faq .row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.reviews .faq .illustration .shape-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(226, 36, 31, 0.4), transparent 70%);
  top: -10px; left: 4%;
}
.reviews .faq .illustration .star-badge {
  transform-origin: 290px 120px;
  animation: reviewsStarPulse 2.6s ease-in-out infinite;
}
@keyframes reviewsStarPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(-6deg); }
}
.reviews .faq .illustration .chat-dots path {
  animation: faqDotPulse 1.3s ease-in-out infinite;
}
.reviews .faq .illustration .chat-dots path:nth-child(2) { animation-delay: 0.15s; }
.reviews .faq .illustration .chat-dots path:nth-child(3) { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reviews .faq .illustration .art,
  .reviews .faq .illustration .star-badge,
  .reviews .faq .illustration .chat-dots path { animation: none; }
}

/* 11. Final CTA */
.reviews .cta-final .bar {
  background: linear-gradient(120deg, var(--navy-900), var(--red-700));
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews .cta-final .bar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 85% 0%, rgba(226, 36, 31, 0.25), transparent 70%);
  pointer-events: none;
}
.reviews .cta-final .actions { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll Reveal Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
