:root {
  --navy: #082a52;
  --navy-deep: #051c36;
  --blue: #1683cf;
  --blue-dark: #0e67ad;
  --blue-soft: #eaf5fc;
  --sky: #f4f9fc;
  --ink: #132a42;
  --muted: #5e7185;
  --line: #dce7ef;
  --white: #ffffff;
  --orange: #f59c39;
  --green: #25d366;
  --shadow: 0 18px 50px rgba(8, 42, 82, .11);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== BANDE SUPÉRIEURE ANIMÉE ===== */

.topline {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(
    105deg,
    #0b6fb8 0%,
    #168bd5 48%,
    #0b6fb8 100%
  );
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 4px 16px rgba(5, 58, 104, 0.14);
  font-family: "Poppins", Arial, sans-serif;
}

.topline::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18%;
  z-index: 0;
  width: 13%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-24deg);
  animation: topline-sheen 7s ease-in-out infinite;
}

.topline-ticker {
  position: relative;
  z-index: 1;

  /* نفس الارتفاع السابق: الباند لن تكبر */
  height: 44px;
  min-height: 44px;

  overflow: hidden;

  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 28px,
    #000 calc(100% - 28px),
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 28px,
    #000 calc(100% - 28px),
    transparent 100%
  );
}

.topline-track {
  width: max-content;
  height: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: topline-ticker 25s linear infinite;
}

.topline-sequence {
  min-width: max(100vw, 1040px);
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-right: 20px;
  white-space: nowrap;
}

/* كل Logo يبقى ملتصق بالعبارة الخاصة به */
.topline-brand-group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

/* إيقاف الحركة عند مرور الفأرة */
.topline-ticker:hover .topline-track,
.topline-ticker:focus-within .topline-track {
  animation-play-state: paused;
}

/* Logos */
.topline-logo {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.topline-logo-omega {
  height: 20px;
}

.topline-logo-abac {
  height: 20px;
}

/* Texte, téléphone et email */
.topline-message,
.topline-contact {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.topline a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.topline a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.38);
}

.topline-abac-group:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.48);
}

.topline i {
  margin-right: 6px;
  color: #ffffff;
}

/* Séparateurs lumineux */
.topline-separator {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.11);
}

/* Mouvement continu */
@keyframes topline-ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Passage de lumière */
@keyframes topline-sheen {
  0%,
  64% {
    left: -18%;
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  88%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .topline-ticker {
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );

    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 16px,
      #000 calc(100% - 16px),
      transparent
    );
  }

  .topline-message,
  .topline-contact {
    font-size: 0.76rem;
  }

  .topline-brand-group {
    gap: 8px;
  }

  .topline-sequence {
    gap: 17px;
    padding-right: 17px;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .topline::after,
  .topline-track {
    animation: none;
  }

  .topline-sequence[aria-hidden="true"] {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 231, 239, .85);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 220px;
  max-width: none;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.mobile-nav-contact {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 11px;
  color: #29445f;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 205px;
  min-height: 50px;
  padding: 0 20px;
  color: #07182b;
  background: #ffc400;
  border: 2px solid #ffc400;
  border-radius: 12px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 196, 0, .28);
  transition: .25s ease;
}

.header-cta i {
  color: #07182b;
  font-size: 19px;
}

.header-cta:hover {
  color: #000000;
  background: #ffb800;
  border-color: #ffb800;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 184, 0, .35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.display-title {
  margin-top: 16px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section-title {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(30px, 2.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.section-copy {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(22, 131, 207, .22);
}

.button-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--blue-dark);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link i {
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.home-hero {
  position: relative;
  padding: 78px 0 66px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fcff 0%, #edf6fc 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -260px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(22, 131, 207, .055);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.hero-copy .lead {
  max-width: 650px;
  margin-top: 24px;
}

.hero-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4c647a;
  font-size: .82rem;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: .74rem;
}

.hero-visual {
  position: relative;
  padding: 0 0 30px 24px;
}

.hero-image-wrap {
  height: 520px;
  overflow: hidden;
  border-radius: 120px 24px 24px 24px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.service-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(315px, 78%);
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(5, 28, 54, .25);
}

.service-float-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-float-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--blue);
  border-radius: 11px;
  font-size: 1.2rem;
}

.service-float strong {
  display: block;
  font-size: .95rem;
}

.service-float span {
  display: block;
  color: #b9cce0;
  font-size: .74rem;
}

.service-float a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 14px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  cursor: default;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.proof-item:last-child {
  border: 0;
}

.proof-item i {
  color: var(--blue);
  font-size: 1.45rem;
  transition: color .25s ease, transform .25s ease;
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: .88rem;
  transition: color .25s ease, font-weight .25s ease;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  transition: color .25s ease, font-weight .25s ease;
}

.proof-item:hover {
  z-index: 2;
  background-color: #eef8ff;
  box-shadow: 0 14px 30px rgba(8, 42, 82, .14);
  transform: translateY(-7px) scale(1.025);
}

.proof-item:hover i {
  color: #0b6fbe;
  transform: scale(1.15);
}

.proof-item:hover strong {
  color: #0b6fbe;
  font-weight: 800;
}

.proof-item:hover span {
  color: #0b2f55;
  font-weight: 600;
}

.brand-highlight {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: var(--white);
  background: linear-gradient(125deg, #061d38 0%, #0a376b 100%);
}

.brand-highlight::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 500px;
  height: 500px;
  right: -220px;
  bottom: -300px;
  border: 75px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: url("/images/abac/ABAC-logotype-without-tagline-white.png");
  background-repeat: no-repeat;
  background-position: center 54%;
  background-size: min(1800px, 110vw) auto;
  opacity: .035;
}

.brand-highlight-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 6vw, 80px);
}

.brand-highlight .brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
  text-align: center;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  gap: 18px;
  margin: 24px 0;
}

.brand-mark img {
  width: 205px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-frame {
  width: 235px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-logo-frame img {
  width: 235px;
  max-width: none;
  max-height: none;
  flex: 0 0 auto;
  object-position: center;
}

.group-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #d4e8f8;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-highlight .eyebrow {
  display: flex;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
  color: #7fd0fb;
}

.brand-highlight .section-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  color: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(30px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.055em;
  text-align: center;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .3);
}

.brand-highlight .section-title span {
  display: block;
}

.brand-highlight .section-title span:first-child {
  white-space: nowrap;
}

.brand-highlight .section-title span:last-child {
  text-align: center;
}

.brand-highlight .section-copy {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.96rem, 1vw, 1.04rem);
  line-height: 1.74;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

.brand-highlight .button-row {
  flex-wrap: nowrap;
  justify-content: center;
}

.brand-highlight .button {
  white-space: nowrap;
}

.brand-highlight .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}

.brand-highlight .button-secondary:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.brand-showcase {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0 0 28px 28px;
  overflow: visible;
  isolation: isolate;
  border-radius: 0;
  box-shadow: none;
}

.brand-showcase::before {
  display: none;
}

.brand-showcase>img {
  width: 100%;
  height: 435px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .26);
}

.brand-showcase-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  padding: 17px 19px;
  color: var(--navy);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand-showcase-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 1.2rem;
}

.brand-showcase-card strong {
  display: block;
  font-size: .96rem;
}

.brand-showcase-card span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
}

.quick-section {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading .section-copy {
  margin: 18px 0 0;
  max-width: 720px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 18px;
  text-decoration: none;
  isolation: isolate;
}

.quick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--card-image) center/cover no-repeat;
  transition: transform .45s ease;
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 21, 39, .14), rgba(4, 24, 47, .92));
}

.quick-card:hover::before {
  transform: scale(1.05);
}

.quick-icon {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 11px;
  backdrop-filter: blur(8px);
  font-size: 1.2rem;
}

.quick-card-content {
  margin-top: auto;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 54px;
}

.quick-card h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.3;
}

.quick-card-content p {
  display: none !important;
}

.quick-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  transition: .2s ease;
}

.quick-card:hover .quick-arrow {
  transform: translate(3px, -3px);
}

.human-section {
  padding: 92px 0;
  color: var(--white);
  background: linear-gradient(125deg, #061d38 0%, #0a376b 100%);
}

.human-section .eyebrow {
  color: #76c7f5;
}

.human-section .section-title,
.human-section .human-list strong {
  color: var(--white);
}

.human-section .lead,
.human-section .human-list span {
  color: #c9dced;
}

.human-section .text-link {
  color: #76c7f5;
}

.human-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.human-photo {
  position: relative;
  min-height: 500px;
}

.human-photo img {
  width: calc(100% - 28px);
  height: 500px;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.human-caption {
  position: absolute;
  right: 0;
  bottom: 32px;
  max-width: 260px;
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.human-caption strong {
  display: block;
  color: var(--navy);
  font-size: .92rem;
}

.human-caption span {
  color: var(--muted);
  font-size: .75rem;
}

.human-copy .lead {
  margin-top: 22px;
}

.human-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  list-style: none;
}

.human-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.human-list i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 10px;
  font-size: 1.05rem;
}

.human-list strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
}

.human-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.steps-section {
  padding: 92px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #dceaf4;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-size: 1.25rem;
}

.step-card h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 1rem;
}

.step-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
}

.insights-section {
  padding: 92px 0;
  background: var(--navy);
  color: var(--white);
}

.insights-section .section-title {
  color: var(--white);
}

.insights-section .eyebrow {
  color: #80cff8;
}

.insights-section .section-copy {
  color: #bdd0e2;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.insight-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  text-decoration: none;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.insight-body {
  padding: 24px;
}

.insight-label {
  color: var(--blue-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.38;
}

.insight-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .77rem;
}

.cta-band {
  padding: 54px 0;
  background: var(--blue);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 740px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.cta-inner p {
  margin-top: 9px;
  color: #dcedfa;
  font-size: .86rem;
}

.cta-inner .button {
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background: var(--navy);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -280px;
  right: -110px;
  border: 80px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #a9c0d6;
  font-size: .75rem;
}

.breadcrumbs a {
  color: #d9eaf8;
  text-decoration: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  align-items: end;
  gap: 80px;
}

.page-hero .eyebrow {
  color: #7fc9f5;
}

.page-hero .display-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.page-hero .lead {
  margin-top: 20px;
  color: #c8d8e7;
}

.hero-side-note {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
  border-radius: 15px;
}

.hero-side-note i {
  color: #77cbf7;
  font-size: 1.55rem;
}

.hero-side-note strong {
  display: block;
  margin-top: 12px;
  font-size: .95rem;
}

.hero-side-note p {
  margin-top: 7px;
  color: #bed0e0;
  font-size: .8rem;
}

.abac-page-hero {
  padding-bottom: 82px;
  background: linear-gradient(125deg, #061d38 0%, #0b417c 100%);
}

.abac-page-hero .page-hero-grid {
  align-items: center;
}

.abac-page-hero .brand-mark {
  margin: 0 0 22px;
}

.abac-page-hero .brand-mark img {
  width: 225px;
}

.abac-page-hero .group-badge {
  color: #e4f1fa;
}

.abac-hero-visual {
  position: relative;
  padding: 0 0 28px 25px;
}

.abac-hero-visual>img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 100px 18px 18px 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .26);
}

.abac-hero-label {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 280px;
  padding: 18px 20px;
  color: var(--navy);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.abac-hero-label strong {
  display: block;
  font-size: .9rem;
}

.abac-hero-label span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
}

.product-showcase>img {
  object-fit: cover;
  object-position: 45% center;
  padding: 0;
  background: transparent;
}

.abac-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  margin-top: 40px;
}

.abac-range-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: .2s ease;
}

.abac-range-card:hover {
  transform: translateY(-5px);
  border-color: #add7ee;
  box-shadow: var(--shadow);
}

.abac-range-image {
  height: 245px;
  overflow: hidden;
  background: #e8f1f7;
}

.abac-range-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.abac-range-card:hover .abac-range-image img {
  transform: scale(1.035);
}

.abac-range-copy {
  padding: 26px;
}

.abac-range-copy h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.abac-range-copy p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .8rem;
}

.range-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.abac-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 42px;
  background: var(--navy);
  border-radius: 18px;
}

.abac-fact {
  padding: 30px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.abac-fact:last-child {
  border: 0;
}

.abac-fact strong {
  display: block;
  color: #72cef9;
  font-size: 2rem;
  line-height: 1;
}

.abac-fact span {
  display: block;
  margin-top: 9px;
  font-size: .82rem;
  font-weight: 800;
}

.abac-fact p {
  margin-top: 6px;
  color: #b8ccdf;
  font-size: .74rem;
}

.official-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

.official-source:hover {
  text-decoration: underline;
}

.content-section {
  padding: 88px 0;
}

.content-section.soft {
  background: var(--sky);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.media-panel {
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel.tall {
  height: 560px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #405971;
  font-size: .87rem;
}

.check-list i {
  color: var(--blue);
  margin-top: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: .2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #a9d3ed;
  box-shadow: 0 16px 36px rgba(8, 42, 82, .08);
}

.info-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 12px;
  font-size: 1.25rem;
}

.info-card h3 {
  margin-top: 20px;
  color: var(--navy);
  font-size: 1rem;
}

.info-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .8rem;
}

.info-card .text-link {
  margin-top: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  padding: 18px;
  background: var(--sky);
  border-radius: 12px;
}

.feature-item i {
  color: var(--blue);
}

.feature-item strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: .86rem;
}

.feature-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .74rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  counter-reset: steps;
}

.timeline-item {
  position: relative;
  padding: 0 24px 0 0;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 44px;
  right: 10px;
  height: 1px;
  background: #bcd7e8;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 6px solid var(--blue-soft);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
}

.timeline-item h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: .9rem;
}

.timeline-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .75rem;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.part-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.part-card i {
  color: var(--blue);
  font-size: 1.5rem;
}

.part-card h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: .92rem;
}

.part-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .76rem;
}

.request-guide {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
}

.request-guide-copy {
  padding: clamp(34px, 5vw, 60px);
  color: var(--white);
}

.request-guide .section-title {
  color: var(--white);
}

.request-guide-copy p {
  margin-top: 16px;
  color: #bfd1e2;
}

.request-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: clamp(28px, 4vw, 48px);
  background: #0c3869;
}

.request-detail {
  padding: 18px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
}

.request-detail strong {
  color: var(--white);
  font-size: .84rem;
}

.request-detail p {
  margin-top: 4px;
  color: #abc3da;
  font-size: .73rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.value-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.value-card span {
  display: block;
  color: #d8eaf5;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.value-card h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: 1rem;
}

.value-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .8rem;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.sector-pills span {
  padding: 9px 14px;
  color: #345069;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 56px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 19px;
  color: inherit;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
}

.contact-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 10px;
  font-size: 1.2rem;
}

.contact-card strong {
  display: block;
  color: var(--navy);
  font-size: .85rem;
}

.contact-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
}

.contact-form-card {
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.contact-form-card>p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #3b536c;
  font-size: .73rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cfdee9;
  border-radius: 9px;
  outline: none;
  transition: .2s ease;
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 131, 207, .1);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: .78rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #166534;
  background: #dcfce7;
}

.form-status.error {
  color: #991b1b;
  background: #fee2e2;
}

.urgent-card {
  margin-top: 22px;
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
}

.urgent-card strong {
  display: block;
}

.urgent-card p {
  margin-top: 4px;
  color: #bdd1e2;
  font-size: .76rem;
}

.urgent-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  max-width: 840px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 4px;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
}

.faq-button i {
  color: var(--blue);
  transition: transform .2s ease;
}

.faq-item.open .faq-button i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer>div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 40px 18px 4px;
  color: var(--muted);
  font-size: .83rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.site-footer {
  background: var(--navy-deep);
  color: #b8cada;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 55px;
  padding: 64px 0 45px;
}

.footer-brand img {
  width: 188px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  font-size: .78rem;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--white);
  font-size: .83rem;
}

.footer-list {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-list a {
  color: #b8cada;
  font-size: .76rem;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: #b8cada;
  font-size: .75rem;
}

.footer-contact-list i {
  color: #6cc5f7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8299ad;
  font-size: .7rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
  font-size: 1.55rem;
  text-decoration: none;
  transition: .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1200px) {
  .brand-highlight-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 720px);
    gap: 42px;
  }

  .brand-highlight .brand-copy {
    max-width: 680px;
    margin-inline: auto;
    padding: 0;
    text-align: center;
  }

  .brand-highlight .eyebrow {
    margin-inline: auto;
  }

  .brand-mark {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-highlight .section-title,
  .brand-highlight .section-title span:last-child {
    text-align: center;
  }

  .brand-highlight .section-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .brand-highlight .button-row {
    justify-content: center;
  }

  .brand-showcase {
    width: 100%;
    max-width: 660px;
    min-height: 0;
    margin-inline: auto;
    overflow: visible;
    border-radius: 20px;
  }

  .brand-showcase::before {
    display: none;
  }

  .brand-showcase>img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 18px;
  }

  .site-nav a {
    padding: 9px 7px;
    font-size: .78rem;
  }

  .brand img {
    width: 180px;
  }

  .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 45px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
.about-intro-photo {
    margin-top: 20px;
  }
.nav-shell {
  min-height: 70px;
}

.nav-toggle {
  display: grid;
  place-items: center;
  margin-left: auto;
}

.header-cta {
  display: none;
}

.site-nav {
  position: fixed;
  inset: 107px 0 0;
  display: none;
  height: calc(100dvh - 107px);
  padding: 18px 20px 28px;
  overflow-y: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 35px rgba(8, 42, 82, .12);
}

.site-nav.open {
  display: block;
}

  .site-nav>ul {
  align-items: stretch;
  flex-direction: column;
}

.site-nav a {
  display: flex;
  padding: 12px 14px;
  font-size: .88rem;
}

.mobile-nav-contact {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.site-nav .mobile-nav-contact a {
  justify-content: center;
  color: var(--white);
  background: var(--blue);
}

.home-hero {
  padding: 64px 0;
}

.hero-grid,
.human-grid,
.page-hero-grid,
.split-grid,
.contact-layout {
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 690px;
}

.hero-visual {
  max-width: 620px;
}

.hero-image-wrap {
  height: 490px;
}

.proof-grid {
  grid-template-columns: 1fr;
}

.proof-item {
  border-right: 0;
  border-bottom: 1px solid var(--line);
  padding: 15px 2px;
}

.proof-item:last-child {
  border-bottom: 0;
}

.section-heading {
  align-items: start;
  flex-direction: column;
  gap: 16px;
}

.human-grid {
  gap: 48px;
}

.page-hero-grid {
  gap: 36px;
}

.hero-side-note {
  max-width: 500px;
}

.abac-range-grid {
  grid-template-columns: repeat(2, 1fr);
}

.abac-range-card:last-child {
  grid-column: 1 / -1;
}

.abac-range-card:last-child .abac-range-image {
  height: 300px;
}

.timeline {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.timeline-item:nth-child(2)::after {
  display: none;
}

.request-guide {
  grid-template-columns: 1fr;
}

.insight-grid {
  grid-template-columns: 1fr;
}

.cta-inner {
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.footer-main {
  grid-template-columns: 1.2fr .8fr;
}

.footer-contact-col {
  grid-column: auto;
}
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }
.site-nav {
    inset: 70px 0 0;
    height: calc(100dvh - 70px);
  }

  .brand img {
    width: 160px;
  }

  .display-title {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .section-title,
  .brand-highlight .section-title {
    font-size: 30px;
  }

  .home-hero {
    padding: 50px 0 48px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-image-wrap {
    height: 410px;
    border-radius: 75px 18px 18px 18px;
  }

  .service-float {
    width: calc(100% - 15px);
  }

  .quick-section,
  .human-section,
  .steps-section,
  .insights-section,
  .content-section,
  .brand-highlight {
    padding: 70px 0;
  }

  .quick-grid,
  .steps-grid,
  .service-grid,
  .parts-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 260px;
  }

  .human-photo,
  .human-photo img {
    min-height: 0;
    height: 420px;
  }

  .human-caption {
    max-width: 230px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .brand-highlight .section-copy {
    max-width: 100%;
    font-size: .94rem;
    line-height: 1.65;
    text-wrap: pretty;
  }

  .brand-highlight .section-title span:first-child {
    white-space: normal;
  }

  .brand-highlight .section-title {
    display: block;
    width: 100%;
  }

  .brand-showcase {
    padding: 0 0 24px;
    overflow: visible;
    box-shadow: none;
  }

  .brand-showcase>img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
  }

  .brand-showcase-card {
    left: 12px;
    bottom: 0;
    min-width: 0;
    max-width: calc(100% - 24px);
    padding: 14px 15px;
  }

  .abac-hero-visual {
    padding-left: 0;
  }

  .abac-hero-visual>img {
    height: 370px;
    border-radius: 70px 16px 16px 16px;
  }

  .abac-hero-label {
    left: 14px;
  }

  .abac-range-grid,
  .abac-facts {
    grid-template-columns: 1fr;
  }

  .abac-range-card:last-child {
    grid-column: auto;
  }

  .abac-range-card:last-child .abac-range-image {
    height: 245px;
  }

  .abac-fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .abac-fact:last-child {
    border-bottom: 0;
  }

  .media-panel,
  .media-panel.tall {
    height: 390px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item:not(:last-child)::after {
    top: 42px;
    bottom: -22px;
    left: 18px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .request-details,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .insight-card {
    grid-template-columns: 120px 1fr;
  }

  .insight-body {
    padding: 18px;
  }

  .insight-card p {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
    padding-top: 50px;
  }

  .footer-brand,
  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    gap: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 430px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    padding-left: 0;
  }

  .service-float {
    position: relative;
    width: 100%;
    margin-top: -55px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .human-photo img {
    width: 100%;
  }

  .human-caption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -40px 14px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact-col {
    grid-column: auto;
  }
}

.brand-highlight::after {
  content: "";
  position: absolute;
  z-index: 0;

  top: -20%;
  left: -25%;
  width: 150%;
  height: 140%;

  background-image: url("/images/abac/abac-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;

  opacity: 0.04;
  pointer-events: none;

  animation: abacLogoMove 14s ease-in-out infinite alternate;
  will-change: transform;
}

.brand-highlight-grid {
  position: relative;
  z-index: 1;
}

@keyframes abacLogoMove {
  from {
    transform: translateX(-6%);
  }

  to {
    transform: translateX(6%);
  }
}

.brand-highlight .brand-copy::before {
  content: none;
}

@media (max-width: 768px) {
  .brand-highlight::after {
    top: -10%;
    left: -50%;
    width: 200%;
    height: 120%;
    background-size: 120% auto;
    opacity: 0.035;
    animation-duration: 12s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-highlight::after {
    animation: none;
    transform: none;
  }
}

.steps-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.intervention-process {
  position: relative;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.93) 45%,
      rgba(255, 255, 255, 0.78) 100%),
    url("/images/technicien-maintenance-compresseur-air-maroc.webp") center / cover no-repeat;

  padding: 92px 0;
}

.intervention-process .step-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(3px);
}

@media (max-width: 768px) {
  .intervention-process {
    background-position: 42% center;
    padding: 70px 0;
  }
}

/* ===== FOOTER OMEGA AIR ===== */

.site-footer {
  background: #051c36;
  color: #b8cada;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1.1fr;
  align-items: start;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 350px;
  margin-top: 18px;
  color: #b8cada;
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-brand img.footer-omega-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
}

.footer-brand img.footer-abac-authorised {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin-top: 24px;
  filter: none;
}

/* لمعان Logo OMEGA AIR */
.footer-brand img.footer-omega-logo {
  animation: omega-logo-glow 8s ease-in-out infinite;
}

/* لمعان Logo ABAC بعد OMEGA AIR */
.footer-brand img.footer-abac-authorised {
  animation: abac-logo-glow 8s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes omega-logo-glow {
  0%,
  18%,
  100% {
    filter:
      brightness(0)
      invert(1)
      drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }

  8% {
    filter:
      brightness(0)
      invert(1)
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 14px rgba(51, 174, 255, 0.55));
    transform: scale(1.015);
  }
}

@keyframes abac-logo-glow {
  0%,
  18%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }

  8% {
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 14px rgba(51, 174, 255, 0.55));
    transform: scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-brand img.footer-omega-logo,
  .footer-brand img.footer-abac-authorised {
    animation: none;
  }
}

.footer-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: #b8cada;
  font-size: 0.78rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #b8cada;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-contact-list i {
  margin-top: 3px;
  color: #6cc5f7;
}

.footer-contact-list a {
  color: #b8cada;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 17px;
  color: #ffffff;
  background: #1683cf;
  border-radius: 9px;
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-cta:hover {
  background: #0e67ad;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8299ad;
  font-size: 0.7rem;
}

/* Tablette */

@media (max-width: 920px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

/* Mobile */

@media (max-width: 620px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 0 38px;
  }

  .footer-brand img {
    width: 180px;
  }

  .footer-bottom-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 17px 0;
  }
}

/* Bouton WhatsApp vert */

.cta-band .whatsapp-cta {
  color: #ffffff;
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
}

.cta-band .whatsapp-cta i {
  color: #ffffff;
  font-size: 1.15rem;
}

.cta-band .whatsapp-cta:hover {
  color: #ffffff;
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
}


/* Demander une intervention en jaune */

.site-footer .footer-cta {
  color: #07182b;
  background: #ffc400;
  border: 2px solid #ffc400;
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.25);
}

.site-footer .footer-cta i {
  color: #07182b;
}

.site-footer .footer-cta:hover {
  color: #000000;
  background: #ffb800;
  border-color: #ffb800;
  transform: translateY(-2px);
}

/* Texte de la section Conseils sous le titre */

.insights-section .section-heading {
  display: block;
  margin-bottom: 38px;
}

.insights-heading-content {
  width: 100%;
  max-width: 850px;
}

.insights-section .section-title {
  margin-top: 12px;
}

.insights-section .section-copy {
  max-width: 760px;
  margin: 16px 0 0;
  color: #bdd0e2;
  font-size: 1rem;
  line-height: 1.7;
}

/* Bouton Voir la gamme ABAC en jaune */

.brand-highlight .button-primary {
  color: #07182b;
  background: #ffc400;
  border-color: #ffc400;
  box-shadow: 0 12px 26px rgba(255, 196, 0, 0.28);
}

.brand-highlight .button-primary:hover {
  color: #000000;
  background: #ffb800;
  border-color: #ffb800;
  transform: translateY(-2px);
}

/* Rotation douce des cartes Conseils */

.insights-section .insight-card {
  transition: opacity .28s ease, transform .28s ease, box-shadow .25s ease;
}

.insights-section .insight-card.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

/* Reflet lumineux discret sur les boutons d'action verts et jaunes */

.header-cta,
.cta-band .whatsapp-cta,
.site-footer .footer-cta,
.brand-highlight .button-primary,
.whatsapp-float {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta::after,
.cta-band .whatsapp-cta::after,
.site-footer .footer-cta::after,
.brand-highlight .button-primary::after,
.whatsapp-float::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -45%;
  bottom: -45%;
  left: -85%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  transform: skewX(-22deg);
  animation: omegaButtonShine 4.2s ease-in-out infinite;
}

.cta-band .whatsapp-cta::after,
.whatsapp-float::after {
  animation-delay: 1.1s;
}

@keyframes omegaButtonShine {

  0%,
  62% {
    left: -85%;
  }

  82%,
  100% {
    left: 145%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .header-cta::after,
  .cta-band .whatsapp-cta::after,
  .site-footer .footer-cta::after,
  .brand-highlight .button-primary::after,
  .whatsapp-float::after {
    animation: none;
    display: none;
  }
}

/* WhatsApp flottant — visible sur toutes les pages */
.whatsapp-float {
  position: fixed !important;
  right: 22px !important;
  left: auto !important;
  bottom: 22px !important;
  top: auto !important;
  z-index: 9999 !important;

  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #25d366;
  border: 4px solid #ffffff;
  border-radius: 50%;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-size: 28px;
  line-height: 1;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.whatsapp-float i {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

/* Téléphone */
@media (max-width: 620px) {
  .whatsapp-float {
    right: 16px !important;
    left: auto !important;
    bottom: 16px !important;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

/* Background de la page À propos */
.about-page .hero-photo-slot {
  background-image:
    linear-gradient(90deg,
      rgba(5, 28, 54, 0.72) 0%,
      rgba(5, 28, 54, 0.28) 55%,
      rgba(5, 28, 54, 0.08) 100%),
    url("/images/a-propos/equipe-omega-air-solutions-air-comprime-maroc.webp");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-page .hero-photo-slot {
  background-image:
    linear-gradient(90deg,
      rgba(5, 28, 54, 0.55) 0%,
      rgba(5, 28, 54, 0.20) 55%,
      rgba(5, 28, 54, 0.05) 100%),
    url("/images/a-propos/technicien-omega-air-maintenance-compresseur-industriel-maroc.webp");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-intro-photo {
  align-self: start;
  min-height: 0;
  margin-top: 145px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf5fc;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(8, 42, 82, 0.14);
}

.about-intro-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.about-photo-gallery {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 145px;
}

.about-photo-gallery figure {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #eaf5fc;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(8, 42, 82, 0.14);
}

.about-photo-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.about-photo-gallery figure:hover img {
  transform: scale(1.025);
}
@media (max-width: 920px) {
  .about-photo-gallery {
    margin-top: 20px;
    gap: 16px;
  }
}
