/* EB Smart Solutions public marketing footer. Tenant-specific; generic tenant footers remain untouched. */
.ebss-footer{
  position:relative;
  overflow:hidden;
  padding:64px 24px 24px;
  background:
    radial-gradient(circle at 78% 8%,rgba(35,111,255,.10),transparent 27%),
    linear-gradient(180deg,#0b1017 0%,#090d13 100%);
  color:#f6f8fb;
  border-top:1px solid rgba(255,255,255,.06);
}
.ebss-footer::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(35,127,255,.7),transparent);
  opacity:.6;
}
.ebss-footer-inner{
  position:relative;
  z-index:1;
  max-width:1240px;
  margin:0 auto;
}
.ebss-footer-grid{
  display:grid;
  grid-template-columns:minmax(280px,1.45fr) minmax(150px,.62fr) minmax(150px,.62fr) minmax(280px,1.15fr);
  gap:48px;
  align-items:start;
}
.ebss-footer-brand{min-width:0}
.ebss-footer-logo{
  display:block;
  width:auto;
  height:auto;
  max-width:330px;
  max-height:82px;
  object-fit:contain;
  margin:0 0 22px;
}
.ebss-footer-brand-name{
  display:block;
  margin:0 0 10px;
  font-size:18px;
  font-weight:850;
  letter-spacing:-.01em;
}
.ebss-footer-copy{
  max-width:390px;
  margin:0;
  color:#aab5c4;
  font-size:14px;
  line-height:1.75;
}
.ebss-footer-heading{
  margin:4px 0 18px;
  color:#7f8b9e;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.ebss-footer-links{
  display:grid;
  gap:12px;
}
.ebss-footer-links a,
.ebss-footer-bottom a{
  color:#eef3f9;
  text-decoration:none;
  transition:color .18s ease,transform .18s ease,opacity .18s ease;
}
.ebss-footer-links a{
  width:max-content;
  max-width:100%;
  font-size:14px;
  font-weight:650;
  color:#cfd7e2;
}
.ebss-footer-links a:hover,
.ebss-footer-bottom a:hover{
  color:#4f96ff;
}
.ebss-footer-links a:hover{transform:translateX(2px)}
.ebss-footer-cta{
  position:relative;
  padding:25px;
  border:1px solid rgba(93,151,255,.25);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(30,73,139,.28),rgba(13,23,38,.78));
  box-shadow:0 18px 46px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.04);
}
.ebss-footer-cta::after{
  content:"";
  position:absolute;
  right:-42px;
  bottom:-52px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(36,112,255,.11);
  filter:blur(2px);
  pointer-events:none;
}
.ebss-footer-cta-kicker{
  position:relative;
  z-index:1;
  display:block;
  margin-bottom:9px;
  color:#6fa7ff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.ebss-footer-cta h3{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  color:#fff;
  font-size:21px;
  line-height:1.25;
  letter-spacing:-.025em;
}
.ebss-footer-cta p{
  position:relative;
  z-index:1;
  margin:0 0 19px;
  color:#aeb9c8;
  font-size:13px;
  line-height:1.65;
}
.ebss-footer-cta-button{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px;
  padding:0 17px;
  border-radius:10px;
  background:#2376ef;
  color:#fff!important;
  text-decoration:none;
  font-size:13px;
  font-weight:850;
  box-shadow:0 9px 22px rgba(35,118,239,.24);
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;
}
.ebss-footer-cta-button:hover{
  background:#3284ff;
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(35,118,239,.30);
}
.ebss-footer-social{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:20px;
}
.ebss-footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:35px;
  height:35px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
  background:rgba(255,255,255,.035);
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.ebss-footer-social a:hover{
  transform:translateY(-1px);
  border-color:rgba(79,150,255,.55);
  background:rgba(79,150,255,.08);
}
.ebss-footer-social svg{width:17px;height:17px;display:block}
.ebss-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:46px;
  padding-top:21px;
  border-top:1px solid rgba(255,255,255,.11);
  color:#818d9e;
  font-size:12px;
}
.ebss-footer-legal{
  display:flex;
  justify-content:flex-end;
  gap:18px;
  flex-wrap:wrap;
}
.ebss-footer-legal a{color:#909bad}

@media(max-width:1100px){
  .ebss-footer-grid{grid-template-columns:minmax(280px,1.35fr) repeat(2,minmax(145px,.6fr));gap:34px}
  .ebss-footer-cta{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1fr) auto;column-gap:26px;align-items:center}
  .ebss-footer-cta-kicker,.ebss-footer-cta h3,.ebss-footer-cta p{grid-column:1}
  .ebss-footer-cta-button{grid-column:2;grid-row:1/4;align-self:center}
}
@media(max-width:760px){
  .ebss-footer{padding:50px 20px 22px}
  .ebss-footer-grid{grid-template-columns:1fr 1fr;gap:34px 24px}
  .ebss-footer-brand{grid-column:1/-1}
  .ebss-footer-logo{max-width:270px;max-height:70px}
  .ebss-footer-cta{grid-column:1/-1;display:block}
  .ebss-footer-bottom{align-items:flex-start;flex-direction:column;margin-top:36px}
  .ebss-footer-legal{justify-content:flex-start}
}
@media(max-width:480px){
  .ebss-footer-grid{grid-template-columns:1fr}
  .ebss-footer-brand,.ebss-footer-cta{grid-column:auto}
  .ebss-footer-cta{padding:22px}
}
