/* =========================================================
   Footer 2026 LIGHT — premium, airy, glass, subtle motion
   - Matches light aesthetic like your screenshot
   - Soft grid background + gentle glow
   - Modern hover + micro-animations
========================================================= */

.footer26L{
  position: relative;
  padding: 70px 0 26px;
  overflow: hidden;

  /* airy light base */
  background: transparent;
  color: rgba(15,23,32,.92);
}

/* Ambient gradients (very soft) */
.footer26L__bg{
  position: absolute;
  inset: -40%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .55;

  background:
    radial-gradient(900px 600px at 18% 25%, rgba(88,225,255,.16), transparent 55%),
    radial-gradient(900px 620px at 82% 22%, rgba(169,139,255,.14), transparent 58%),
    radial-gradient(900px 720px at 50% 120%, rgba(255,166,43,.12), transparent 62%);
  animation: footer26LFloat 12s ease-in-out infinite;
  transform: translateZ(0);
}

@keyframes footer26LFloat{
  0%,100%{ transform: translate3d(-2%, -1%, 0) rotate(-6deg) scale(1.02); }
  50%{ transform: translate3d(2%, 1%, 0) rotate(6deg) scale(1.06); }
}

/* Subtle grid like the hero background */
.footer26L__grid{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background:
    linear-gradient(to right, rgba(15,23,32,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,32,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,0) 78%);
}

/* Layout container */
.footer26L__container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer26L__top{
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Brand glass card (light) */
.footer26L__brand{
  padding: 18px 18px 16px;
  border-radius: 22px;

  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.52));
  border: 1px solid rgba(15,23,32,.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 60px rgba(15,23,32,.10);
  position: relative;
  overflow: hidden;
}

/* soft shimmer line */
.footer26L__brand::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.55), transparent 62%),
    linear-gradient(90deg, transparent, rgba(88,225,255,.20), rgba(169,139,255,.18), transparent);
  opacity: .35;
  transform: translate3d(-40%, 0, 0);
  animation: footer26LShimmer 4.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes footer26LShimmer{
  0%,100%{ transform: translate3d(-40%, 0, 0); opacity: .22; }
  50%{ transform: translate3d(40%, 0, 0); opacity: .35; }
}

/* Tag pill */
.footer26L__tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.68);
  border: 1px solid rgba(15,23,32,.08);

  color: rgba(15,23,32,.72);
  font-weight: 700;
  font-size: 13px;
}

.footer26L__tagDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(88,225,255,.40);
  box-shadow: 0 0 0 6px rgba(88,225,255,.14);
}

/* Brand name */
.footer26L__nameRow{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 12px;
}

.footer26L__name{
  font-size: 22px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15,23,32,.92);
}

.footer26L__chip{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,32,.10);
  background: rgba(255,255,255,.58);
  color: rgba(15,23,32,.76);
}

/* Description */
.footer26L__desc{
  margin: 12px 0 12px;
  color: rgba(15,23,32,.66);
  line-height: 1.65;
  max-width: 56ch;
}

/* mini line */
.footer26L__mini{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(15,23,32,.58);
}

.footer26L__miniDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(88,225,255,.55), rgba(169,139,255,.45));
  box-shadow: 0 0 0 6px rgba(169,139,255,.10);
}

/* Columns */
.footer26L__col{
  padding-top: 6px;
}

.footer26L__title{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15,23,32,.86);
}

/* Links */
.footer26L__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 10px;
}

.footer26L__links a{
  color: rgba(15,23,32,.70);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: transform .18s ease, color .18s ease;
}

.footer26L__links a::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(88,225,255,.55), rgba(169,139,255,.45), rgba(255,166,43,.35));
  transform: scaleX(.6);
  transform-origin: left;
  transition: opacity .18s ease, transform .18s ease;
}

.footer26L__links a:hover{
  color: rgba(15,23,32,.92);
  transform: translateX(2px);
}
.footer26L__links a:hover::after{
  opacity: .9;
  transform: scaleX(1);
}

/* Email */
.footer26L__email{
  display:inline-flex;
  color: rgba(15,23,32,.84);
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 12px;
  transition: color .18s ease;
}
.footer26L__email:hover{
  color: rgba(15,23,32,.92);
}

/* Socials: your UL class */
.footer-social{
  list-style: none;
  margin: 10px 0 16px;
  padding: 0;
  display: flex;
  gap: 10px;
}

/* light glass social buttons */
.footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  text-decoration: none;

  color: rgba(15,23,32,.82);
  border: 1px solid rgba(15,23,32,.10);

  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.52));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 14px 40px rgba(15,23,32,.10);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
}

.footer-social a:hover{
  transform: translateY(-2px);
  border-color: rgba(88,225,255,.26);
  box-shadow:
    0 0 0 6px rgba(88,225,255,.10),
    0 24px 70px rgba(15,23,32,.16);
  filter: saturate(1.1);
}

/* CTA: dark button (like your hero dark button) */
.footer26L__cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;

  color: rgba(255,255,255,.92);
  background: linear-gradient(180deg, rgba(15,23,32,.96), rgba(15,23,32,.82));
  border: 1px solid rgba(15,23,32,.12);
  box-shadow: 0 18px 60px rgba(15,23,32,.16);

  transition: transform .18s ease, box-shadow .18s ease;
}

.footer26L__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(15,23,32,.20);
}

.footer26L__ctaArrow{
  display:inline-block;
  transform: translateX(0);
  transition: transform .18s ease;
}
.footer26L__cta:hover .footer26L__ctaArrow{
  transform: translateX(3px);
}

/* Divider */
.footer26L__divider{
  margin: 28px 0 18px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(15,23,32,.14),
    rgba(88,225,255,.18),
    rgba(15,23,32,.14),
    transparent);
  opacity: .9;
}

/* Bottom */
.footer26L__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer26L__copy{
  color: rgba(15,23,32,.62);
  font-weight: 600;
}

.footer26L__legal{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  gap: 14px;
}

.footer26L__legal a{
  color: rgba(15,23,32,.62);
  text-decoration: none;
  font-weight: 800;
  transition: color .18s ease;
}
.footer26L__legal a:hover{
  color: rgba(15,23,32,.92);
}

/* Responsive */
@media (max-width: 900px){
  .footer26L__top{
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .footer26L__brand{
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px){
  .footer26L{
    padding: 56px 0 22px;
  }
  .footer26L__container{
    width: min(1120px, calc(100% - 28px));
  }
  .footer26L__top{
    grid-template-columns: 1fr;
  }
  .footer26L__bottom{
    justify-content: center;
    text-align: center;
  }
}
