/* ============================================================
       DESIGN SYSTEM — ROOT TOKENS
    ============================================================ */
    :root {
      --clr-bg-dark:        #050d1f;
      --clr-bg-nav:         #06102a;
      --clr-bg-stats:       #0b1736;
      --clr-accent:         #1a8cff;
      --clr-accent-hover:   #0f70d6;
      --clr-text-primary:   #ffffff;
      --clr-text-muted:     #a0b3cc;
      --clr-border:         rgba(255,255,255,0.12);
      --clr-stats-divider:  rgba(255,255,255,0.15);

      --ff-base:            'Montserrat', sans-serif;

      --fw-regular:         400;
      --fw-medium:          500;
      --fw-semibold:        600;
      --fw-bold:            700;
      --fw-extrabold:       800;

      --radius-sm:          6px;
      --radius-md:          10px;
      --radius-lg:          16px;

      --shadow-btn:         0 4px 20px rgba(26,140,255,0.4);
      --transition:         0.25s ease;

      --nav-height:         72px;
    }

    /* ============================================================
       RESET / BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-base);
      background-color: var(--clr-bg-dark);
      color: var(--clr-text-primary);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      scroll-margin-top: 72px;
    }

    img { max-width: 100%; display: block; }

    a { text-decoration: none; color: inherit; }
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  border-radius: 999px;

  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(37,211,102,.35),
    0 4px 10px rgba(0,0,0,.15);

  transition: all .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);

  box-shadow:
    0 15px 35px rgba(37,211,102,.45),
    0 8px 18px rgba(0,0,0,.2);
}

.whatsapp-float::before {
  content: '';
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 999px;

  background: rgba(37,211,102,.35);

  animation: pulse 2s infinite;
}

.whatsapp-float svg,
.whatsapp-float span {
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {

  .whatsapp-float {
    width: 60px;
    height: 60px;

    padding: 0;

    border-radius: 50%;

    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
    /* ============================================================
       NAVBAR
    ============================================================ */
    .site-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: var(--clr-bg-nav);
      border-bottom: 1px solid var(--clr-border);
      display: flex;
      align-items: center;
      transition: background var(--transition), box-shadow var(--transition);
    }

    .site-navbar.scrolled {
      background: rgba(6,16,42,0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.5);
      backdrop-filter: blur(12px);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0 clamp(1rem, 4vw, 2.5rem);
      max-width: 1440px;
      margin: 0 auto;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 60px;
      width: auto;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(1.25rem, 2.5vw, 2.5rem);
      list-style: none;
    }

    .nav-links a {
      font-size: clamp(0.8rem, 1vw, 0.9rem);
      font-weight: var(--fw-medium);
      color: var(--clr-text-primary);
      letter-spacing: 0.01em;
      position: relative;
      padding-bottom: 4px;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--clr-accent);
      border-radius: 2px;
      transition: width var(--transition);
    }

    .nav-links a.active::after,
    .nav-links a:hover::after { width: 100%; }

    .nav-links a.active { color: var(--clr-text-primary); }
    .nav-links a:hover  { color: var(--clr-text-primary); }

    /* CTA Button */
    .btn-nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--clr-accent);
      color: #fff;
      font-size: 0.875rem;
      font-weight: var(--fw-semibold);
      padding: 10px 20px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .btn-nav-cta:hover {
      background: var(--clr-accent-hover);
      box-shadow: var(--shadow-btn);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-nav-cta svg { flex-shrink: 0; }

    /* Hamburger */
    .nav-toggler {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: poMontserrat;
      padding: 6px;
    }

    .nav-toggler span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--clr-text-primary);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }

    .nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggler.open span:nth-child(2) { opacity: 0; }
    .nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: var(--clr-bg-nav);
      border-top: 1px solid var(--clr-border);
      padding: 1.5rem;
      z-index: 999;
      flex-direction: column;
      gap: 1rem;
      animation: slideDown 0.25s ease forwards;
    }

    .nav-mobile-menu.active { display: flex; }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .nav-mobile-menu a {
      font-size: 1rem;
      font-weight: var(--fw-medium);
      color: var(--clr-text-primary);
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--clr-border);
      display: block;
    }

    .nav-mobile-menu .btn-nav-cta {
      margin-top: 0.5rem;
      justify-content: center;
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero-section {
      min-height: 100vh;
      padding-top: var(--nav-height);
      background: radial-gradient(ellipse 80% 80% at 70% 50%, #0a1f4e 0%, #050d1f 60%);
      background-image: url('../assets/images/hero-image.webp');
      background-position: center;
      background-size: cover;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .hero-section::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.3);
    }
    .hero-main {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hero-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 clamp(1rem, 4vw, 2.5rem);
      width: 100%;
    }

    .hero-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 2rem;
      padding: clamp(3rem, 8vw, 6rem) 0 2rem;
    }

    /* Hero Content */
    .hero-content { max-width: 580px; }

    .hero-title {
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      font-weight: var(--fw-extrabold);
      line-height: 1.18;
      color: var(--clr-text-primary);
      letter-spacing: -0.02em;
      margin-bottom: 0.2em;
    }

    .hero-title .accent { color: var(--clr-accent); }

    .hero-subtitle {
      font-size: clamp(0.9rem, 1.4vw, 1rem);
      color: var(--clr-text-muted);
      line-height: 1.7;
      margin-top: 1.25rem;
      margin-bottom: 2rem;
      max-width: 460px;
    }

    /* Hero Buttons */
    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--clr-accent);
      color: #fff;
      font-size: 0.9375rem;
      font-weight: var(--fw-semibold);
      padding: 13px 28px;
      min-height: 56px;
      min-width: 195px;
      border-radius: var(--radius-sm);
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .btn-hero-primary:hover {
      background: var(--clr-accent-hover);
      box-shadow: var(--shadow-btn);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-hero-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--clr-text-primary);
      font-size: 0.9375rem;
      font-weight: var(--fw-semibold);
      padding: 12px 24px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: var(--radius-sm);
      transition: border-color var(--transition), background var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .btn-hero-outline:hover {
      border-color: var(--clr-accent);
      background: rgba(26,140,255,0.08);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-icon-circle {
      width: 30px;
      height: 30px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color var(--transition);
    }

    .btn-hero-outline:hover .btn-icon-circle { border-color: var(--clr-accent); }

    /* Hero Globe */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-globe-img {
      width: 100%;
      max-width: 680px;
      object-fit: contain;
      filter: drop-shadow(0 0 60px rgba(26,140,255,0.35));
      animation: floatGlobe 6s ease-in-out infinite;
    }

    @keyframes floatGlobe {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-18px); }
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar {
      background: #0b17368f;
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-lg);
      margin: 0 clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
      max-width: 1380px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
      padding: clamp(1.5rem, 3vw, 2rem) 0;
    }

    .stat-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0.5rem clamp(0.75rem, 2vw, 1.5rem);
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: var(--clr-stats-divider);
    }

    .stat-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 0.75rem;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(45%) sepia(97%) saturate(400%) hue-rotate(190deg) brightness(105%);
    }

    .stat-number {
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      font-weight: var(--fw-extrabold);
      color: var(--clr-text-primary);
      line-height: 1;
      letter-spacing: -0.01em;
    }

    .stat-label {
      font-size: clamp(0.75rem, 1.1vw, 0.85rem);
      color: var(--clr-text-muted);
      font-weight: var(--fw-medium);
      margin-top: 0.4rem;
      line-height: 1.4;
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-row {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links, .btn-nav-cta { display: none; }
      .nav-toggler { display: flex; }

      .hero-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2.5rem;
      }

      .hero-content { max-width: 100%; }

      .hero-subtitle { max-width: 100%; }

      .hero-actions { justify-content: center; }

      .hero-visual {
        order: -1;
        max-height: 280px;
      }

      .hero-globe-img { max-width: 320px; }

      .stats-inner {
        flex-wrap: wrap;
        padding: 1.25rem 0;
      }

      .stat-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 1rem 0.5rem;
      }

      .stat-item:not(:last-child)::after { display: none; }

      .stat-item:nth-child(1),
      .stat-item:nth-child(2),
      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
        border-bottom: 1px solid var(--clr-stats-divider);
      }

      .stat-item:nth-child(odd) {
        border-right: 1px solid var(--clr-stats-divider);
      }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 1.8rem; }
      .btn-hero-primary, .btn-hero-outline { font-size: 0.875rem; padding: 11px 20px;
 }
    }

    @media (min-width: 1440px) {
      .hero-globe-img { max-width: 740px; }
    }


/* ============================================================
   CLIENTS MARQUEE SECTION
============================================================ */
.clients-section {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #edf2f9;
  border-bottom: 1px solid #edf2f9;
}

/* ── Header ── */
.clients-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.clients-header__line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ccddf5);
  border-radius: 1px;
}

.clients-header__line:last-child {
  background: linear-gradient(90deg, #ccddf5, transparent);
}

.clients-header__text {
  font-size: clamp(0.75rem, 1.1vw, 0.8125rem);
  font-weight: var(--fw-semibold);
  color: #8aa0bc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

/* ── Marquee Wrapper ── */
.clients-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Fog overlays — infinite edge illusion ── */
.clients-fog {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(80px, 12vw, 200px);
  z-index: 2;
  pointer-events: none;
}

.clients-fog--left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.9) 35%,
    rgba(255,255,255,0.5) 65%,
    rgba(255,255,255,0)  100%
  );
}

.clients-fog--right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.9) 35%,
    rgba(255,255,255,0.5) 65%,
    rgba(255,255,255,0)  100%
  );
}

/* ── Track outer (clips overflow) ── */
.clients-track-outer {
  overflow: hidden;
  width: 100%;
}

/* ── Track — flex row of two cloned sets ── */
.clients-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: clientsScroll 32s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 0 clamp(0.5rem, 1.5vw, 1rem);
  flex-shrink: 0;
}

/* ── Individual Logo Card ── */
.client-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: var(--radius-md);
  height: clamp(80px, 11vw, 110px);
  min-width: clamp(160px, 18vw, 240px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.03);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  padding: 5px;
}

/* Subtle shimmer on hover */
.client-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(26,140,255,0.06) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.client-logo-card:hover::before {
  transform: translateX(100%);
}

.client-logo-card:hover {
  box-shadow:
    0 6px 24px rgba(26, 140, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 140, 255, 0.2);
  transform: translateY(-3px);
}

.client-logo-card img {
  width: 100%;
  height: -webkit-fill-available;
  filter: none;
  opacity: 1;
  object-fit: contain;
  display: block;
  aspect-ratio: 4/2;
}


/* ── Scroll keyframe ── */
@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }
}

/* ── Dark section variant (if placed on dark bg) ── */
.clients-section.clients-section--dark {
  background: transparent;
  border-top-color: rgba(255,255,255,0.07);
  border-bottom-color: rgba(255,255,255,0.07);
}

.clients-section--dark .clients-fog--left {
  background: linear-gradient(
    to right,
    rgba(5,13,31,1)   0%,
    rgba(5,13,31,0.9) 35%,
    rgba(5,13,31,0.4) 65%,
    rgba(5,13,31,0)  100%
  );
}

.clients-section--dark .clients-fog--right {
  background: linear-gradient(
    to left,
    rgba(5,13,31,1)   0%,
    rgba(5,13,31,0.9) 35%,
    rgba(5,13,31,0.4) 65%,
    rgba(5,13,31,0)  100%
  );
}

.clients-section--dark .clients-header__text {
  color: rgba(255,255,255,0.4);
}

.clients-section--dark .clients-header__line {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15));
}

.clients-section--dark .clients-header__line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent);
}

.clients-section--dark .client-logo-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.clients-section--dark .client-logo-card:hover {
  border-color: rgba(26,140,255,0.35);
  background: rgba(26,140,255,0.07);
  box-shadow: 0 6px 24px rgba(26,140,255,0.15);
}

.clients-section--dark .client-logo-card img {
  filter: brightness(1) opacity(1);
}

.clients-section--dark .client-logo-card:hover img {
  filter: brightness(1) opacity(1);
}


/* ============================================================
   OUR SERVICES SECTION
============================================================ */
.services-section {
  background: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Section Header */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  color: #5a7090;
  font-weight: var(--fw-regular);
  margin: 0;
}

/* Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

/* Individual Card */
.svc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
  height: 100%;
}

.svc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow var(--transition), border-color var(--transition);
}

.svc-card:hover {
  box-shadow: 0 8px 32px rgba(26, 140, 255, 0.13);
  border-color: rgba(26, 140, 255, 0.25);
  transform: translateY(-4px);
}

/* Icon */
.svc-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title */
.svc-card__title {
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.35;
  margin-bottom: 1rem;
}

/* List */
.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.svc-card__list li {
  font-size: clamp(0.8rem, 1.1vw, 0.875rem);
  color: #3d5068;
  font-weight: var(--fw-regular);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.svc-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Learn More Link */
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-accent);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}

.svc-card__link:hover {
  color: var(--clr-accent-hover);
  gap: 10px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 1.5rem 1.25rem;
  }
}


/* ============================================================
   ABOUT SECTION — LIGHT VERSION
============================================================ */
.aboutl-section {
  background: #eef3fb;
  position: relative;
  overflow: hidden;
}

/* Full-bleed two-column layout */
.aboutl-wrapper {
  display: grid;
  grid-template-columns: 800px 1fr;
  min-height: 100vh;
  margin: 0 auto;
  align-items: stretch;
}

/* ── LEFT: Card ── */
.aboutl-card {
  position: relative;
  z-index: 2;
  margin: clamp(2rem, 5vw, 3.5rem) 0 clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.25rem);
  /* box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    0 1px 0 rgba(255,255,255,0.9) inset; */
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.aboutl-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow */
.aboutl-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.aboutl-eyebrow__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.aboutl-eyebrow__label {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Title */
.aboutl-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}

.aboutl-title__accent {
  color: var(--clr-accent);
  display: block;
}

/* Tagline */
.aboutl-tagline {
  font-size: clamp(0.875rem, 1.25vw, 0.9375rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

/* Accent rule */
.aboutl-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin-bottom: 0.9rem;
}

/* Body copy */
.aboutl-body {
  font-size: clamp(0.8rem, 1.05vw, 0.85rem);
  color: #5a7090;
  line-height: 1.78;
  margin-bottom: 1.35rem;
}

/* ── Feature Cards 2×2 ── */
.aboutl-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.aboutl-feat {
  background: #f7f9fd;
  border: 1px solid #e4ecf7;
  border-radius: var(--radius-md);
  padding: 0.9rem 0.9rem 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(14px);
}

.aboutl-feat.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color var(--transition), background var(--transition);
}

.aboutl-feat:hover {
  border-color: rgba(26, 140, 255, 0.3);
  background: #eef5ff;
  box-shadow: 0 4px 16px rgba(26, 140, 255, 0.08);
}

.aboutl-feat__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.aboutl-feat__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.aboutl-feat__title {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.3;
  margin: 0;
}

.aboutl-feat__desc {
  font-size: clamp(0.7rem, 0.9vw, 0.75rem);
  color: #5a7090;
  line-height: 1.6;
  margin: 0 0 0.4rem;
}

.aboutl-feat__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

/* ── Stats Strip ── */
.aboutl-stats {
  background: #f3f7fd;
  border: 1px solid #e0eaf7;
  border-radius: var(--radius-md);
  padding: 0.9rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.aboutl-stat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.aboutl-stat:not(:last-child) {
  border-right: 1px solid #d6e4f5;
  padding-right: 0.5rem;
}

.aboutl-stat__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.aboutl-stat__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.aboutl-stat__num {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.aboutl-stat__lbl {
  font-size: clamp(0.6rem, 0.8vw, 0.67rem);
  color: #7a90aa;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  white-space: nowrap;
}

/* ── RIGHT: Photo ── */
.aboutl-visual {
  position: relative;
  overflow: hidden;
}

.aboutl-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.aboutl-visual:hover .aboutl-photo {
  transform: scale(1.025);
}

/* Left-edge gradient to blend photo into card area */
.aboutl-photo__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #eef3fb 0%,
    rgba(238, 243, 251, 0.4) 18%,
    transparent 45%
  );
  poMontserrat-events: none;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .aboutl-wrapper {
    grid-template-columns: 520px 1fr;
  }
}

@media (max-width: 1024px) {
  .aboutl-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .aboutl-visual {
    order: -1;
    height: 400px;
  }

  .aboutl-photo__fade {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      #eef3fb 100%
    );
  }

  .aboutl-card {
    margin: 0 clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 640px) {
  .aboutl-features {
    grid-template-columns: 1fr;
  }

  .aboutl-stats {
    flex-wrap: wrap;
    gap: 0.875rem;
  }

  .aboutl-stat {
    flex: 0 0 calc(50% - 0.5rem);
    justify-content: flex-start;
  }

  .aboutl-stat:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .aboutl-stat:nth-child(1),
  .aboutl-stat:nth-child(2) {
    border-bottom: 1px solid #d6e4f5;
    padding-bottom: 0.875rem;
  }

  .aboutl-visual {
    height: 260px;
  }
}

@media (max-width: 380px) {
  .aboutl-stat {
    flex: 0 0 100%;
  }

  .aboutl-stat:nth-child(1),
  .aboutl-stat:nth-child(2) {
    border-bottom: 1px solid #d6e4f5;
  }
}

/* ============================================================
   INDUSTRIES WE SERVE SECTION
============================================================ */
.industries-section {
  position: relative;
  background-color: #050d1f;
  /* Asset: assets/images/industries-bg.jpg */
  background-image: url('../assets/images/industries-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.industries-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 8, 24, 0.88) 0%,
    rgba(5, 16, 42, 0.80) 50%,
    rgba(3, 8, 24, 0.88) 100%
  );
  z-index: 0;
}

.industries-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Header ── */
.ind-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.ind-header__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ind-rule-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

.ind-rule-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
}

.ind-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0;
}

.ind-subtitle {
  font-size: clamp(0.85rem, 1.3vw, 0.9375rem);
  color: var(--clr-text-muted);
  font-weight: var(--fw-regular);
  margin: 0;
}

/* ── Grid ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
}

/* ── Card ── */
.ind-card {
  background: rgba(10, 22, 55, 0.65);
  border: 1px solid rgba(26, 140, 255, 0.2);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.125rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(22px);
}

.ind-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease,
              border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
}

.ind-card:hover {
  border-color: rgba(26, 140, 255, 0.55);
  background: rgba(14, 30, 70, 0.80);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 140, 255, 0.15);
}

/* Icon */
.ind-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.ind-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(500%) hue-rotate(185deg) brightness(110%);
  transition: filter var(--transition);
}

.ind-card:hover .ind-card__icon img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(90%) saturate(600%) hue-rotate(185deg) brightness(120%);
}

/* Body */
.ind-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.ind-card__title {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: var(--fw-bold);
  color: var(--clr-text-primary);
  line-height: 1.3;
  margin: 0;
}

.ind-card__desc {
  font-size: clamp(0.775rem, 1.05vw, 0.8125rem);
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

.ind-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-accent);
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  margin-top: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}

.ind-card__link:hover {
  color: #5bb3ff;
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-header__rule {
    gap: 0.75rem;
  }

  .ind-rule-line {
    max-width: 60px;
  }

  .ind-title {
    white-space: normal;
    font-size: 1.4rem;
  }
}

/* ============================================================
   WHY NEXUS CALLERS SERVICES SECTION
============================================================ */
.why-nexus-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-nexus-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 0 auto;
}

/* ── Left: Content Panel ── */
.why-nexus-content {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.why-nexus-heading-wrap {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.why-nexus-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.why-nexus-title-underline {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
}

/* Features 2-col grid */
.why-nexus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2rem);
  align-items: start;
}

/* Feature Item */
.wnx-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(18px);
}

.wnx-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Icon Box */
.wnx-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background var(--transition), box-shadow var(--transition);
}

.wnx-feature:hover .wnx-feature__icon {
  background: var(--clr-accent-hover);
  box-shadow: 0 4px 16px rgba(26, 140, 255, 0.4);
}

.wnx-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Text */
.wnx-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wnx-feature__title {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.3;
  margin: 0;
}

.wnx-feature__desc {
  font-size: clamp(0.775rem, 1.05vw, 0.8125rem);
  color: #5a7090;
  line-height: 1.65;
  margin: 0;
}

/* ── Right: Photo Panel ── */
.why-nexus-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.why-nexus-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.why-nexus-visual:hover .why-nexus-photo {
  transform: scale(1.03);
}

/* Left-edge gradient fade: blends photo into white content panel */
.why-nexus-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1.65) 0%,
    rgba(255, 255, 255, 0.55) 25%,
    transparent 55%
  );
  poMontserrat-events: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-nexus-container {
    grid-template-columns: 1fr;
  }

  .why-nexus-visual {
    min-height: 340px;
    order: -1;
  }

  .why-nexus-photo-fade {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      rgba(255, 255, 255, 0.7) 100%
    );
  }

  .why-nexus-content {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  }
}

@media (max-width: 600px) {
  .why-nexus-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-nexus-visual {
    min-height: 240px;
  }
}



/* ============================================================
   HOW WE WORK SECTION
============================================================ */
.hww-section {
  background: #f5f8ff;
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  overflow: hidden;
}

.hww-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Header ── */
.hww-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.hww-title {
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.hww-subtitle {
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  color: #5a7090;
  margin: 0;
}

/* ── Steps Row ── */
.hww-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 0;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* Dashed connector line */
.hww-connector {
  position: absolute;
  top: 36px; /* center of circle */
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  border-top: 2.5px dashed #90c8f0;
  z-index: 0;
  transform: translateY(-50%);
}

/* Individual Step */
.hww-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}

.hww-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Step Circle */
.hww-step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29a8ff 0%, #0f7de6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(26, 140, 255, 0.3);
  margin-bottom: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.hww-step:hover .hww-step__circle {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 28px rgba(26, 140, 255, 0.45);
}

/* Active/highlighted step (step 3) */
.hww-step__circle--active {
  background: linear-gradient(135deg, #1a8cff 0%, #0a60c8 100%);
  box-shadow: 0 6px 28px rgba(26, 140, 255, 0.5);
  transform: scale(1.08);
}

.hww-step:hover .hww-step__circle--active {
  transform: translateY(-4px) scale(1.12);
}

.hww-step__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Step Text */
.hww-step__content {
  padding: 0 0.375rem;
}

.hww-step__title {
  font-size: clamp(0.8rem, 1.15vw, 0.9375rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.hww-step__desc {
  font-size: clamp(0.73rem, 0.95vw, 0.8125rem);
  color: #5a7090;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA Banner ── */
.hww-cta {
  background: #0d1e3d;
  margin-top: 0;
  opacity: 0;
  transform: translateY(16px);
}

.hww-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hww-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hww-cta__text {
  max-width: 560px;
}

.hww-cta__heading {
  font-size: clamp(1.2rem, 2.5vw, 1.625rem);
  font-weight: var(--fw-extrabold);
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hww-cta__sub {
  font-size: clamp(0.85rem, 1.2vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

.hww-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-accent);
  color: #fff;
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: var(--fw-semibold);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), gap var(--transition);
}

.hww-cta__btn:hover {
  background: var(--clr-accent-hover);
  box-shadow: var(--shadow-btn);
  color: #fff;
  transform: translateY(-2px);
  gap: 14px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hww-connector { display: none; }

  .hww-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-left: clamp(1rem, 4vw, 2rem);
  }

  .hww-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.125rem;
    width: 100%;
  }

  .hww-step__circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* Vertical connector for mobile */
  .hww-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 72px;
    width: 2px;
    height: calc(100% + 2rem - 72px);
    border-left: 2.5px dashed #90c8f0;
    z-index: 0;
  }

  .hww-step__content {
    padding: 0.5rem 0 0;
  }
}

@media (max-width: 600px) {
  .hww-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hww-cta__btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testi-section {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Header ── */
.testi-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.testi-header__rule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testi-rule-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.testi-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}

/* ── Swiper overrides ── */
.testi-swiper {
  padding-bottom: 3rem !important;
  overflow: visible;
}

.testi-swiper .swiper-wrapper {
  align-items: stretch;
}

.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ── Card ── */
.testi-card {
  background: #ffffff;
  border: 1px solid #e2eaf5;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.testi-card:hover {
  box-shadow: 0 8px 32px rgba(26, 140, 255, 0.1);
  border-color: rgba(26, 140, 255, 0.25);
  transform: translateY(-4px);
}

/* Opening quote mark */
.testi-card__quote {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: #b8d4f0;
  font-family: Georgia, serif;
  font-weight: var(--fw-bold);
  margin-bottom: -0.5rem;
  user-select: none;
}

/* Quote text */
.testi-card__text {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  color: #2d3f55;
  line-height: 1.75;
  margin: 0;
  font-style: normal;
  flex: 1;
}

/* Author row */
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f8;
}

/* Avatar */
.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e2eaf5;
}

/* Meta text */
.testi-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-card__name {
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.2;
}

.testi-card__role {
  font-size: 0.775rem;
  color: #7a90aa;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

/* ── Pagination dots ── */
.testi-pagination {
  bottom: 0 !important;
}

.testi-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c8d8ec;
  opacity: 1;
  border-radius: 50%;
  margin: 0 5px;
  transition: background var(--transition), transform var(--transition);
}

.testi-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--clr-accent);
  transform: scale(1.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .testi-title {
    font-size: 1.4rem;
    white-space: normal;
  }

  .testi-header__rule {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .testi-swiper {
    overflow: hidden !important;
  }
}



/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  background: #f5f8ff;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6rem);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ── Header ── */
.contact-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #eef4ff;
  border: 1px solid #ccdeff;
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 1rem;
}

.contact-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.contact-eyebrow__label {
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.contact-title__accent {
  color: var(--clr-accent);
}

.contact-subtitle {
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  color: #5a7090;
  margin-bottom: 0.75rem;
}

.contact-header__arrow {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

/* ── Main Card ── */
.contact-card {
  background: #ffffff;
  border: 1px solid #e2eaf5;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Two-column grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

/* Vertical divider */
.contact-divider {
  width: 1px;
  background: #e2eaf5;
  align-self: stretch;
  min-height: 100%;
}

/* ── Panel shared header ── */
.contact-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-panel-head__icon {
  width: 46px;
  height: 46px;
  background: #eef4ff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.contact-panel-head__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-panel-head__title {
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.contact-panel-head__sub {
  font-size: clamp(0.78rem, 1vw, 0.8125rem);
  color: #7a90aa;
  margin: 0;
  line-height: 1.4;
}

/* ── Form Fields ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cf-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8fafd;
  border: 1px solid #dde7f5;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.cf-field:focus-within {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.1);
  background: #fff;
}

.cf-field--textarea {
  align-items: flex-start;
}

.cf-field__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  padding: 0 10px;
}

.cf-field__icon--top {
  padding-top: 14px;
  align-self: flex-start;
}

.cf-field__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(20%) saturate(300%) hue-rotate(185deg);
  transition: filter var(--transition);
}

.cf-field:focus-within .cf-field__icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(90%) saturate(500%) hue-rotate(195deg) brightness(100%);
}

.cf-field__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-base);
  font-size: clamp(0.8rem, 1.1vw, 0.875rem);
  color: #0d1b2e;
  padding: 13px 0;
  min-width: 0;
}

.cf-field__input::placeholder {
  color: #a0b4cc;
  font-weight: var(--fw-regular);
}

.cf-field__textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 13px;
  line-height: 1.6;
}

.cf-field__sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.cf-field__sparkle--top {
  align-self: flex-start;
  padding-top: 14px;
}

.cf-field:focus-within .cf-field__sparkle {
  opacity: 0;
}

/* Submit Button */
.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-base);
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: var(--fw-semibold);
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), gap var(--transition);
  margin-top: 0.25rem;
}

.cf-submit:hover {
  background: var(--clr-accent-hover);
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
  gap: 14px;
}

.cf-submit:active {
  transform: translateY(0);
}

/* Privacy note */
.cf-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #8aa0bc;
  margin: 0.25rem 0 0;
  text-align: center;
}

.cf-privacy__icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(65%) sepia(15%) saturate(400%) hue-rotate(185deg);
  display: block;
}

/* ── Info Panel ── */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

/* Filled circle icon */
.cinfo-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cinfo-item__icon--filled {
  background: var(--clr-accent);
  box-shadow: 0 4px 14px rgba(26, 140, 255, 0.35);
}

.cinfo-item:hover .cinfo-item__icon--filled {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(26, 140, 255, 0.45);
}

.cinfo-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cinfo-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.cinfo-item__label {
  font-size: clamp(0.8rem, 1.1vw, 0.875rem);
  font-weight: var(--fw-bold);
  color: #0d1b2e;
  line-height: 1.3;
}

.cinfo-item__value {
  font-size: clamp(0.8rem, 1.05vw, 0.85rem);
  color: #2d4a6b;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-decoration: none;
}

.cinfo-item__value--link {
  color: var(--clr-accent);
  transition: color var(--transition);
}

.cinfo-item__value--link:hover {
  color: var(--clr-accent-hover);
}

.cinfo-item__note {
  font-size: clamp(0.72rem, 0.9vw, 0.75rem);
  color: #8aa0bc;
  line-height: 1.4;
}

.cinfo-item__map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.75rem, 0.95vw, 0.8rem);
  color: var(--clr-accent);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  margin-top: 2px;
  transition: gap var(--transition), color var(--transition);
}

.cinfo-item__map-link:hover {
  color: var(--clr-accent-hover);
  gap: 7px;
}

/* Tagline Card */
.contact-tagline-card {
  background: #f3f7fd;
  border: 1px solid #dde7f5;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.contact-tagline-card__icon {
  width: 40px;
  height: 40px;
  background: #e4eefb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
}

.contact-tagline-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-tagline-card__text {
  font-size: clamp(0.78rem, 1vw, 0.8125rem);
  color: #4a6280;
  line-height: 1.55;
  margin: 0;
}

.contact-tagline-card__link {
  color: var(--clr-accent);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-tagline-card__link:hover {
  color: var(--clr-accent-hover);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }

  .contact-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem 1.125rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }
}

/* ── Field Error States ── */
.cf-field.has-error {
  border-color: #e05252 !important;
  background: #fff8f8;
}
.cf-field.has-error:focus-within {
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.12) !important;
}
.cf-field__error {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 12px;
  font-size: 0.7rem;
  color: #e05252;
  font-weight: 500;
  white-space: nowrap;
}
.cf-field.has-error .cf-field__error {
  display: block;
}
.cf-field {
  margin-bottom: 24px; /* room for error message */
}
 
/* reCAPTCHA notice */
.cf-recaptcha-notice {
  font-size: 0.7rem;
  color: #a0b4cc;
  margin: -8px 0 4px;
  line-height: 1.5;
}
.cf-recaptcha-notice a {
  color: var(--clr-accent);
  text-decoration: none;
}
.cf-recaptcha-notice a:hover {
  text-decoration: underline;
}
 
/* ── Submit Button States ── */
.cf-submit {
  position: relative;
  overflow: hidden;
}
.cf-submit__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cfSpin 0.7s linear infinite;
  flex-shrink: 0;
}
.cf-submit.is-loading .cf-submit__text { opacity: 0.7; }
.cf-submit.is-loading .cf-submit__spinner { display: block; }
.cf-submit.is-loading .cf-submit__arrow { display: none; }
.cf-submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none !important;
}
.cf-submit.is-success {
  background: #16a34a !important;
  box-shadow: 0 4px 20px rgba(22,163,74,0.35) !important;
}
@keyframes cfSpin {
  to { transform: rotate(360deg); }
}
 
/* Global error box */
.cf-global-error {
  display: none;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8125rem;
  color: #c53030;
  text-align: center;
  margin-top: -4px;
}
.cf-global-error.visible { display: block; }
 
/* ── Shake animation ── */
@keyframes cfShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  60%      { transform: translateX(6px); }
  80%      { transform: translateX(-3px); }
}
.cf-shake { animation: cfShake 0.38s ease; }
 
/* ============================================================
   THANK YOU POPUP
============================================================ */
.cf-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 32, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cf-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
 
.cf-popup {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 5vw, 2.5rem);
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform: scale(0.88) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cf-popup-overlay.is-open .cf-popup {
  transform: scale(1) translateY(0);
}
 
/* Close button */
.cf-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #f0f4fb;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a90aa;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}
.cf-popup__close:hover {
  background: #e2eaf5;
  color: #0d1b2e;
  transform: rotate(90deg);
}
 
/* Animated rings + icon */
.cf-popup__icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-popup__icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  opacity: 0;
  animation: cfRingPulse 2.5s ease-out infinite;
}
.cf-popup__icon-ring--1 {
  width: 90px; height: 90px;
  animation-delay: 0s;
}
.cf-popup__icon-ring--2 {
  width: 110px; height: 110px;
  animation-delay: 0.5s;
}
@keyframes cfRingPulse {
  0%   { opacity: 0.6; transform: scale(0.75); }
  100% { opacity: 0;   transform: scale(1.2); }
}
.cf-popup__icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8cff 0%, #0f70d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(26, 140, 255, 0.4);
  animation: cfIconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
  z-index: 1;
}
@keyframes cfIconBounce {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
 
/* Popup text */
.cf-popup__title {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: var(--fw-extrabold);
  color: #0d1b2e;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.cf-popup__name {
  font-size: 1rem;
  color: var(--clr-accent);
  font-weight: var(--fw-semibold);
  margin: 0 0 0.875rem;
}
.cf-popup__message {
  font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
  color: #5a7090;
  line-height: 1.7;
  margin: 0;
}
.cf-popup__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), #90c8f0);
  border-radius: 2px;
  margin: 1.25rem auto;
}
.cf-popup__reminder {
  font-size: 0.8125rem;
  color: #7a90aa;
  margin: 0 0 0.3rem;
}
.cf-popup__email {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.cf-popup__email:hover { color: var(--clr-accent-hover); }
 
/* CTA button */
.cf-popup__btn {
  width: 100%;
  background: linear-gradient(135deg, #1a8cff, #0f70d6);
  color: #fff;
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  padding: 13px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.cf-popup__btn:hover {
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}
 
/* Confetti canvas */
.cf-popup__confetti {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
 
/* ── Responsive ── */
@media (max-width: 480px) {
  .cf-popup {
    padding: 1.75rem 1.25rem;
  }
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  background: #071428;
  color: var(--clr-text-primary);
  font-family: var(--ff-base);
}

/* ── Main Footer ── */
.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.3fr 1.1fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* ── Brand Column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-brand__desc {
  font-size: clamp(0.8rem, 1.05vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
}

/* Social buttons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.footer-social__btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.footer-social__btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ── Nav Columns ── */
.footer-col__heading {
  font-size: 0.9375rem;
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col__list a {
  font-size: clamp(0.8rem, 1vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-regular);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-col__list a:hover {
  color: var(--clr-accent);
  padding-left: 4px;
}

/* ── Contact Column ── */
.footer-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.footer-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact__icon--top {
  margin-top: 3px;
}

.footer-contact__link {
  font-size: clamp(0.8rem, 1vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-regular);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-contact__link:hover {
  color: var(--clr-accent);
}

.footer-contact__address {
  font-size: clamp(0.8rem, 1vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  line-height: 1.65;
}

/* ── Bottom Bar ── */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.125rem 0;
}

.footer-bottom__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-align: center;
  font-weight: var(--fw-regular);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.4fr 0.9fr 1.2fr 1fr;
  }

  /* Move brand to full width top row */
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-brand__desc {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
  }

  .footer-brand__desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}