/* ============================================================
   ABS Home — Alico-template visual language
   (single page, scoped under .alico-body where helpful)
   ============================================================ */

.alico-body { background: #FFFFFF; color: var(--slate-900); }

/* shared button system inside this page */
.al-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.al-btn svg { width: 16px; height: 16px; }
.al-btn--dark {
  background: #0E1340;
  color: #FFFFFF;
}
.al-btn--dark:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14,19,64,0.30);
}
.al-btn--primary {
  background: var(--brand-600);
  color: #FFFFFF;
}
.al-btn--primary:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(57,87,255,0.35);
}

/* ─────────────────────────────────────────────────────────────
   1. TOP TAGLINE BAR
   ───────────────────────────────────────────────────────────── */
.al-tagline {
  background: #0A1338;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 8px 0;
}
.al-tagline__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.al-tagline__msg strong { color: var(--brand-400); font-weight: 700; }
.al-tagline__right { display: flex; align-items: center; gap: var(--space-4); }
.al-tagline__social { display: flex; gap: 12px; }
.al-tagline__social a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  transition: color var(--t-fast);
}
.al-tagline__social a:hover { color: var(--brand-400); }
.al-tagline__social svg { width: 14px; height: 14px; }
.al-tagline__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}
.al-tagline__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.al-tagline__lang-flag { font-size: 16px; line-height: 1; }

/* ─────────────────────────────────────────────────────────────
   2. CONTACT-INFO HEADER
   ───────────────────────────────────────────────────────────── */
.al-header {
  background: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid var(--slate-100);
}
.al-header__container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-10);
}
.al-header__logo img {
  height: 56px;
  width: auto;
  display: block;
}
.al-header__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  justify-content: end;
  margin-left: auto;
}

.al-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.al-info-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(57,87,255,0.30);
  flex-shrink: 0;
}
.al-info-item__icon svg { width: 22px; height: 22px; }
.al-info-item__text { display: flex; flex-direction: column; line-height: 1.25; }
.al-info-item__label {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.al-info-item__value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 2px;
}
.al-info-item__sub {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 1px;
}

@media (max-width: 1100px) {
  .al-header__info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .al-header__container { grid-template-columns: 1fr; }
  .al-header__info { grid-template-columns: 1fr; margin-left: 0; }
}

/* ─────────────────────────────────────────────────────────────
   3. BLACK NAV STRIP
   ───────────────────────────────────────────────────────────── */
.al-nav {
  background: #0A1338;
  position: sticky;
  top: 0;
  z-index: 200;
}
.al-nav__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 56px;
  gap: var(--space-6);
}

.al-nav__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  background: var(--brand-600);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}
.al-nav__home::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: var(--brand-600);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.al-nav__home svg { width: 16px; height: 16px; }

.al-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 32px;
  margin: 0;
}
.al-nav__links li { list-style: none; }
.al-nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 56px;
}
.al-nav__links a svg { width: 12px; height: 12px; opacity: 0.6; }
.al-nav__links a:hover { color: var(--brand-400); }

/* ── Mega dropdown on Products ── */
.al-nav__has-mega { position: relative; }
.al-nav__chev { transition: transform var(--t-base); }
.al-nav__has-mega:hover .al-nav__chev,
.al-nav__has-mega:focus-within .al-nav__chev { transform: rotate(180deg); }

/* Invisible hover bridge so the panel doesn't drop when crossing the black nav gap */
.al-nav__has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  pointer-events: auto;
}

.al-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: -160px;
  width: 780px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow:
    0 24px 60px rgba(10,19,56,0.28),
    0 8px 16px rgba(10,19,56,0.10),
    0 0 0 1px var(--slate-200);
  padding-top:    var(--space-8);
  padding-right:  var(--space-8);
  padding-bottom: var(--space-6);
  padding-left:   var(--space-8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: var(--z-dropdown);
}

/* Brand-blue accent stripe at top — anchored to top of rounded panel */
.al-mega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 50%, var(--brand-700) 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* White caret pointing at the Products nav item */
.al-mega::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 176px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 50%, #FFFFFF 50%);
  border-top: 1px solid var(--slate-200);
  border-left: 1px solid var(--slate-200);
  transform: rotate(45deg);
}

.al-nav__has-mega:hover .al-mega,
.al-nav__has-mega:focus-within .al-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.al-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.al-mega__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 180ms ease, transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 180ms ease;
  line-height: 1.3;
  border: 1px solid transparent;
}
.al-mega__item:hover {
  background: var(--brand-50);
  border-color: var(--brand-100);
  transform: translateY(-2px);
}

.al-mega__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
  box-shadow: inset 0 0 0 1px var(--brand-100);
}
.al-mega__item:hover .al-mega__icon {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(57,87,255,0.30);
  transform: scale(1.05);
}
.al-mega__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }

.al-mega__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.al-mega__desc {
  font-size: 11.5px;
  color: var(--slate-500);
  line-height: 1.35;
}

.al-mega__footer {
  margin-top: var(--space-6);
  padding-top:    var(--space-5);
  padding-right:  4px;
  padding-bottom: 0;
  padding-left:   4px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.al-mega__footer-text {
  font-size: 12px;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.al-mega__footer-text::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(57,87,255,0.18);
}

.al-mega__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(57,87,255,0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.al-mega__cta svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.al-mega__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(57,87,255,0.40);
}
.al-mega__cta:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .al-mega { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS CAROUSEL
   ───────────────────────────────────────────────────────────── */
.t-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: var(--space-4);
  align-items: stretch;
}

.t-carousel__track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-2);
}
.t-carousel__track::-webkit-scrollbar { display: none; }
.t-carousel__track .t-card {
  flex: 0 0 calc((100% - var(--space-6) * 2) / 3);
  scroll-snap-align: start;
  /* override featured-row behaviour from home.css */
  grid-row: auto;
}

.t-carousel__btn {
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: #FFFFFF;
  color: var(--slate-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
}
.t-carousel__btn:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(57,87,255,0.30);
}
.t-carousel__btn svg { width: 18px; height: 18px; }

.t-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-8);
}
.t-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--slate-300);
  cursor: pointer;
  transition: all var(--t-base);
}
.t-carousel__dot.is-active {
  width: 32px;
  border-radius: 5px;
  background: var(--brand-600);
}

@media (max-width: 1024px) {
  .t-carousel__track .t-card { flex: 0 0 calc((100% - var(--space-6)) / 2); }
}
@media (max-width: 600px) {
  .t-carousel { grid-template-columns: 40px 1fr 40px; }
  .t-carousel__track .t-card { flex: 0 0 100%; }
  .t-carousel__btn { width: 40px; height: 40px; }
}

/* ─────────────────────────────────────────────────────────────
   HERO TRIANGLE ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.al-hero__tris polygon {
  transform-origin: center;
  animation: tri-float 9s ease-in-out infinite;
}
.al-hero__tris polygon:nth-child(1) { animation-delay: 0s;   animation-duration: 11s; }
.al-hero__tris polygon:nth-child(2) { animation-delay: 0.6s; animation-duration:  9s; }
.al-hero__tris polygon:nth-child(3) { animation-delay: 1.2s; animation-duration: 13s; }
.al-hero__tris polygon:nth-child(4) { animation-delay: 0.4s; animation-duration: 10s; }
.al-hero__tris polygon:nth-child(5) { animation-delay: 1.8s; animation-duration: 12s; }
.al-hero__tris polygon:nth-child(6) { animation-delay: 2.4s; animation-duration:  8s; }

@keyframes tri-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: var(--tri-op, 1);
  }
  33% {
    transform: translate(8px, -10px) rotate(2deg) scale(1.02);
    opacity: 0.95;
  }
  66% {
    transform: translate(-6px, 8px) rotate(-1.5deg) scale(0.98);
    opacity: 1;
  }
}

/* extra slow drift on the whole cluster */
.al-hero__tris {
  animation: tri-drift 18s ease-in-out infinite;
}
@keyframes tri-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, 6px); }
}

/* About-section triangles get the same vibe (slower, subtler) */
.al-about__tris polygon {
  transform-origin: center;
  animation: tri-pop 6s ease-in-out infinite;
}
.al-about__tris polygon:nth-child(1) { animation-delay: 0s; }
.al-about__tris polygon:nth-child(2) { animation-delay: 0.4s; }
.al-about__tris polygon:nth-child(3) { animation-delay: 0.8s; }
.al-about__tris polygon:nth-child(4) { animation-delay: 1.2s; }
.al-about__tris polygon:nth-child(5) { animation-delay: 1.6s; }
.al-about__tris polygon:nth-child(6) { animation-delay: 2.0s; }
.al-about__tris polygon:nth-child(7) { animation-delay: 2.4s; }
.al-about__tris polygon:nth-child(8) { animation-delay: 2.8s; }
@keyframes tri-pop {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.08) translateY(-4px); }
}

/* ─────────────────────────────────────────────────────────────
   STANDARD WORK PROCESS — animations
   ───────────────────────────────────────────────────────────── */
.process__connector path {
  stroke-dasharray: 4 7;
  stroke-dashoffset: 1200;
  animation: connector-draw 4s ease-out forwards;
}
@keyframes connector-draw {
  to { stroke-dashoffset: 0; }
}

/* numbered circles pulse + slide in */
.process__step-num {
  animation: pulse-ring 3s ease-in-out infinite;
}
.process__step:nth-child(1) .process__step-num { animation-delay: 0s; }
.process__step:nth-child(2) .process__step-num { animation-delay: 0.4s; }
.process__step:nth-child(3) .process__step-num { animation-delay: 0.8s; }
.process__step:nth-child(4) .process__step-num { animation-delay: 1.2s; }

@keyframes pulse-ring {
  0%, 100% {
    box-shadow:
      0 0 0 8px #FFFFFF,
      0 0 0 10px var(--brand-100),
      0 12px 28px rgba(57,87,255,0.30);
  }
  50% {
    box-shadow:
      0 0 0 8px #FFFFFF,
      0 0 0 14px rgba(57,87,255,0.20),
      0 18px 38px rgba(57,87,255,0.45);
  }
}

/* orange icon badge — bounce + slow spin */
.process__step-icon {
  animation: icon-bob 2.4s ease-in-out infinite;
  transform-origin: center;
}
.process__step:nth-child(odd) .process__step-icon  { animation-delay: 0s; }
.process__step:nth-child(even) .process__step-icon { animation-delay: 1.2s; }

@keyframes icon-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(8deg); }
}

/* whole step gently floats up on hover */
.process__step {
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.process__step:hover { transform: translateY(-8px); }
.process__step:hover .process__step-num {
  animation-play-state: paused;
  box-shadow:
    0 0 0 8px #FFFFFF,
    0 0 0 14px var(--brand-300),
    0 22px 44px rgba(57,87,255,0.50);
}

/* reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .al-hero__tris,
  .al-hero__tris polygon,
  .al-about__tris polygon,
  .process__connector path,
  .process__step-num,
  .process__step-icon {
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   MODERN SMALL-RADIUS OVERRIDES across the home-alico page
   Standardize all card / button / panel radii to 6–8px for a
   cleaner, more contemporary feel. Circular and pill shapes
   are intentionally preserved.
   ───────────────────────────────────────────────────────────── */
.alico-body .why__card,
.alico-body .t-card,
.alico-body .t-card--feature,
.alico-body .faq .accordion__item,
.alico-body .bento__tile,
.alico-body .stat-card,
.alico-body .testimonial-card,
.alico-body .industry-card,
.alico-body .product-card,
.alico-body .step-card {
  border-radius: 8px;
}

.alico-body .btn,
.alico-body .btn-primary,
.alico-body .btn-secondary,
.alico-body .btn-outline,
.alico-body .btn-ghost,
.alico-body .btn-outline-white,
.alico-body .btn-sm,
.alico-body .btn-md,
.alico-body .btn-lg {
  border-radius: 6px;
}

.alico-body .why__card-icon,
.alico-body .bento__icon {
  border-radius: 8px;
}

.alico-body .faq .accordion__trigger {
  border-radius: 8px 8px 0 0;
}

/* Cards inside the carousel inherit the override above; nothing extra needed */

.al-nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-right: 4px;
}
.al-nav__search {
  background: transparent;
  border: 0;
  color: var(--brand-400);
  cursor: pointer;
  display: inline-flex;
  padding: 6px;
}
.al-nav__search svg { width: 18px; height: 18px; }
.al-nav__branch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: var(--space-4);
  border-left: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}
.al-nav__branch svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .al-nav__container { grid-template-columns: auto 1fr; }
  .al-nav__right { display: none; }
  .al-nav__links { gap: 0; padding-left: 16px; overflow-x: auto; flex-wrap: nowrap; }
  .al-nav__links a { padding: 0 12px; }
}

/* ─────────────────────────────────────────────────────────────
   4. HERO
   ───────────────────────────────────────────────────────────── */
.al-hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding-bottom: 120px;
  background: #0A1338;
}

.al-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.al-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95) hue-rotate(-15deg);
}
.al-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,19,56,0.60) 0%, rgba(10,19,56,0.20) 55%, rgba(10,19,56,0.0) 100%);
}

.al-hero__tris {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  height: 100%;
  width: clamp(420px, 50vw, 720px);
  z-index: 1;
  pointer-events: none;
}

.al-hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(80px, 12vw, 140px);
  color: #FFFFFF;
  max-width: 720px;
}

.al-hero__badge {
  display: inline-block;
  background: #FFFFFF;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
  border-radius: 6px;
}

.al-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
  color: #FFFFFF;
}

.al-hero__sub {
  font-size: var(--text-md);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-8);
  max-width: 520px;
}

@media (max-width: 768px) {
  .al-hero__tris { width: 100%; opacity: 0.6; left: 0; }
}

/* ─────────────────────────────────────────────────────────────
   5. FLOATING 5-FEATURE STRIP (sits across hero/white boundary)
   ───────────────────────────────────────────────────────────── */
.al-features {
  position: relative;
  z-index: 3;
  margin-top: -90px;
  margin-bottom: var(--space-12);
}

.al-features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}

.al-feature {
  background: #FFFFFF;
  padding: 36px 18px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--slate-900);
  box-shadow: 0 20px 44px rgba(10,19,56,0.16);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  position: relative;
  border-radius: 8px;
}
.al-feature::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
  transform: translateX(-50%);
  transition: width var(--t-base);
}
.al-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(57,87,255,0.20);
}
.al-feature:hover::after { width: 100%; }

.al-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--brand-600);
}
.al-feature__icon svg { width: 44px; height: 44px; }

.al-feature h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}

@media (max-width: 1024px) {
  .al-features__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .al-features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────────────────
   6. CLIENT-COUNT + LOGO STRIP
   ───────────────────────────────────────────────────────────── */
.al-trust {
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.al-trust__container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-10);
  position: relative;
}
.al-trust__msg {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-700);
}
.al-trust__msg strong { color: var(--brand-600); }
.al-trust__line {
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--slate-300);
}
.al-trust__logos {
  position: relative;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.al-trust__track {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: max-content;
  padding: var(--space-3) 0;
  animation: al-marquee 32s linear infinite;
  will-change: transform;
}
.al-trust__logos:hover .al-trust__track {
  animation-play-state: paused;
}

@keyframes al-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.al-trust__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--slate-600);
  letter-spacing: -0.01em;
  padding: 14px 28px;
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(10,19,56,0.05);
  transition: color 200ms ease, border-color 200ms ease,
              background 200ms ease, transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 200ms ease;
  flex-shrink: 0;
  cursor: default;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Brand-blue dot bullet before each logo name */
.al-trust__logo::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-300);
  box-shadow: 0 0 0 3px var(--brand-50);
  transition: background 200ms ease, box-shadow 200ms ease;
  flex-shrink: 0;
}

.al-trust__logo:hover {
  color: var(--brand-700);
  border-color: var(--brand-300);
  background: var(--brand-50);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(57,87,255,0.18);
}
.al-trust__logo:hover::before {
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(57,87,255,0.18);
}

@media (prefers-reduced-motion: reduce) {
  .al-trust__track { animation: none; }
}

.al-trust__dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  color: var(--brand-200);
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 768px) {
  .al-trust__container { grid-template-columns: 1fr; }
  .al-trust__dots { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   7. ABOUT — 2-column with triangle cluster
   ───────────────────────────────────────────────────────────── */
.al-about {
  padding: clamp(60px, 9vw, 110px) 0;
  background: #FFFFFF;
}
.al-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.al-about__media {
  position: relative;
  padding-left: 80px;
}
.al-about__tris {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 160px;
  height: auto;
  pointer-events: none;
}
.al-about__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  border-radius: 8px;
}
.al-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.al-about__play {
  position: absolute;
  right: 16px;
  bottom: -36px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(10,19,56,0.16);
  text-decoration: none;
  z-index: 2;
}
.al-about__play-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base);
}
.al-about__play-inner svg { width: 20px; height: 20px; margin-left: 2px; }
.al-about__play:hover .al-about__play-inner { background: var(--brand-700); }

/* about body */
.al-eyebrow-arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}
.al-eyebrow-arrows__l,
.al-eyebrow-arrows__r {
  color: var(--brand-600);
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-block;
}
.al-eyebrow-arrows--center { justify-content: center; }

.al-about__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: var(--space-5);
}

.al-about__lead {
  padding-left: var(--space-5);
  border-left: 3px solid var(--brand-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: var(--space-8);
}

.al-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.al-feat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.al-feat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.al-feat__icon svg { width: 22px; height: 22px; }
.al-feat h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.al-feat p {
  font-size: 13px;
  color: var(--slate-500);
  margin: 0;
}

.al-about__divider {
  height: 1px;
  background: var(--slate-200);
  margin: var(--space-6) 0;
}

.al-about__cta-row {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  flex-wrap: wrap;
}

.al-about__call {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.al-about__call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--brand-600);
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.al-about__call-icon svg { width: 20px; height: 20px; }
.al-about__call-label {
  display: block;
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 500;
}
.al-about__call-num {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .al-about__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .al-about__media { padding-left: 40px; max-width: 520px; margin: 0 auto; }
  .al-about__tris { width: 100px; }
}

/* ─────────────────────────────────────────────────────────────
   8. SERVICES — 4-card grid with diagonal grey backdrop
   ───────────────────────────────────────────────────────────── */
.al-services {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: #FFFFFF;
}
.al-services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.al-services__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.al-services__container { position: relative; z-index: 1; }

.al-services__head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.al-services__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-top: var(--space-3);
}

.al-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.al-svc {
  background: #FFFFFF;
  text-align: center;
  padding: var(--space-12) var(--space-6) var(--space-8);  /* 48px top */
  position: relative;
  text-decoration: none;
  color: var(--slate-900);
  box-shadow: 0 8px 28px rgba(10,19,56,0.08);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  border-radius: 8px;
}
.al-svc:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(57,87,255,0.18);
}

.al-svc__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);  /* sits inside the card; card padding-top now visible */
  box-shadow: 0 12px 32px rgba(57,87,255,0.30);
  transition: transform var(--t-spring);
}
.al-svc:hover .al-svc__icon {
  transform: rotateY(180deg);
}
.al-svc__icon svg { width: 32px; height: 32px; }

.al-svc__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.al-svc__bar {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  margin: 0 auto var(--space-4);
  border-radius: 2px;
}

.al-svc__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate-500);
}

@media (max-width: 1024px) {
  .al-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .al-services__grid { grid-template-columns: 1fr; }
}

/* progress pager */
.al-services__pager {
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.al-services__pager-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-200);
  background: #FFFFFF;
  color: var(--slate-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
}
.al-services__pager-btn:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #FFFFFF;
}
.al-services__pager-btn svg { width: 16px; height: 16px; }
.al-services__progress {
  flex: 1;
  height: 4px;
  background: var(--slate-200);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.al-services__progress-fill {
  position: absolute;
  inset: 0 60% 0 0;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
  border-radius: 2px;
}
