﻿:root{
  --wa-footer-black:#050505;
  --wa-footer-black-2:#0f0f0f;
  --wa-footer-black-3:#171717;
  --wa-footer-blue:#33ABE1;
  --wa-footer-blue-hover:#54BDF0;
  --wa-footer-white:#ffffff;
  --wa-footer-muted:#b9c3cb;
  --wa-footer-border:rgba(255,255,255,.09);
  --wa-footer-max:1400px;
}

.wa-global-footer{
  background:var(--wa-footer-black);
  color:var(--wa-footer-white);
  margin-top:0 !important;
  font-family:Inter,Arial,Helvetica,sans-serif;
}

.wa-footer-container{
  width:min(var(--wa-footer-max),92vw);
  margin:0 auto;
}

.wa-footer-hero{
  padding:92px 0;
  border-bottom:1px solid var(--wa-footer-border);
  background:
    radial-gradient(circle at 10% 20%,rgba(51,171,225,.16),transparent 30%),
    linear-gradient(180deg,#070707 0%,#050505 100%);
}

.wa-footer-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:70px;
  align-items:center;
}

.wa-footer-kicker{
  display:block;
  margin-bottom:16px;
  color:var(--wa-footer-blue);
  font-size:13px;
  font-weight:950;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.wa-footer-hero h2{
  margin:0;
  max-width:760px;
  font-size:clamp(42px,6vw,68px);
  line-height:.96;
  letter-spacing:-.055em;
}

.wa-footer-hero p{
  margin:26px 0 0;
  max-width:780px;
  color:var(--wa-footer-muted);
  font-size:20px;
  line-height:1.75;
}

.wa-footer-hero-buttons{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.wa-footer-primary,
.wa-footer-secondary{
  min-width:250px;
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
  transition:transform .25s ease,background .25s ease,border-color .25s ease,color .25s ease,box-shadow .25s ease;
}

.wa-footer-primary{
  background:var(--wa-footer-blue);
  color:#061421;
  box-shadow:0 14px 34px rgba(51,171,225,.22);
}

.wa-footer-primary:hover{
  background:var(--wa-footer-blue-hover);
  transform:translateY(-2px);
  box-shadow:0 18px 46px rgba(51,171,225,.32);
}

.wa-footer-secondary{
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  background:rgba(255,255,255,.03);
}

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

.wa-footer-main{
  padding:78px 0;
}

.wa-footer-main-grid{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:74px;
  align-items:start;
}

.wa-footer-brand{
  align-self:start;
}

.wa-footer-brand img{
  width:275px;
  max-width:100%;
  height:auto;
  display:block;
}

.wa-footer-contact{
  margin-top:30px;
  padding-top:26px;
  border-top:1px solid var(--wa-footer-border);
}

.wa-footer-contact h3{
  margin:0 0 16px;
  color:#fff;
  font-size:22px;
  letter-spacing:-.02em;
}

.wa-footer-contact p{
  margin:0 0 18px;
  color:var(--wa-footer-muted);
  font-size:16px;
  line-height:1.75;
}

.wa-footer-contact strong{
  color:#fff;
}

.wa-footer-contact a{
  color:var(--wa-footer-blue);
  text-decoration:none;
  font-weight:850;
}

.wa-footer-contact a:hover{
  color:#fff;
}

.wa-footer-link-area{
  min-width:0;
}

.wa-footer-links{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:34px;
  align-items:start;
}

.wa-footer-col h3,
.wa-footer-industries h3{
  margin:0 0 18px;
  color:#fff;
  font-size:17px;
  font-weight:950;
  letter-spacing:-.01em;
}

.wa-footer-col a{
  display:block;
  position:relative;
  color:var(--wa-footer-muted);
  text-decoration:none;
  padding:7px 0;
  font-size:15px;
  font-weight:750;
  line-height:1.35;
  transition:color .2s ease,padding-left .2s ease;
}

.wa-footer-col a:hover{
  color:var(--wa-footer-blue);
  padding-left:6px;
}

.wa-footer-industries{
  margin-top:42px;
  padding-top:30px;
  border-top:1px solid var(--wa-footer-border);
}

.wa-footer-industries div{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.wa-footer-industries a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border:1px solid var(--wa-footer-border);
  border-radius:999px;
  background:var(--wa-footer-black-2);
  color:var(--wa-footer-muted);
  text-decoration:none;
  font-size:14px;
  font-weight:850;
  transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}

.wa-footer-industries a:hover{
  background:var(--wa-footer-blue);
  border-color:var(--wa-footer-blue);
  color:#061421;
  transform:translateY(-2px);
}

.wa-footer-social-bar{
  padding:30px 0;
  border-top:1px solid var(--wa-footer-border);
  border-bottom:1px solid var(--wa-footer-border);
  background:#070707;
}

.wa-footer-social-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.wa-footer-social-grid > span{
  color:#fff;
  font-weight:950;
  letter-spacing:-.01em;
}

.wa-social-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.wa-social-links a{
  width:54px;
  height:54px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--wa-footer-black-2);
  border:1px solid var(--wa-footer-border);
  color:#fff;
  text-decoration:none;
  transition:transform .25s ease,background .25s ease,border-color .25s ease,color .25s ease;
}

.wa-social-links a svg{
  width:23px;
  height:23px;
  fill:currentColor;
}

.wa-social-links a:hover{
  background:var(--wa-footer-blue);
  border-color:var(--wa-footer-blue);
  color:#061421;
  transform:translateY(-4px);
}

.wa-footer-bottom{
  padding:28px 0;
  color:var(--wa-footer-muted);
  font-size:14px;
}

.wa-footer-bottom-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.wa-footer-bottom a{
  color:var(--wa-footer-muted);
  text-decoration:none;
  font-weight:850;
}

.wa-footer-bottom a:hover{
  color:var(--wa-footer-blue);
}

.wa-footer-bottom span{
  color:rgba(255,255,255,.25);
  margin:0 8px;
}

@media(max-width:1180px){
  .wa-footer-hero-grid,
  .wa-footer-main-grid{
    grid-template-columns:1fr;
  }

  .wa-footer-hero-buttons{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .wa-footer-links{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:820px){
  .wa-global-footer{
    margin-top:80px;
  }

  .wa-footer-hero{
    padding:64px 0;
  }

  .wa-footer-main{
    padding:58px 0;
  }

  .wa-footer-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .wa-footer-social-grid,
  .wa-footer-bottom-grid{
    justify-content:center;
    text-align:center;
  }
}

@media(max-width:560px){
  .wa-footer-hero-buttons{
    display:grid;
  }

  .wa-footer-primary,
  .wa-footer-secondary{
    width:100%;
    min-width:0;
  }

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

  .wa-footer-brand img{
    width:235px;
  }

  .wa-footer-bottom-grid{
    display:block;
  }

  .wa-footer-bottom-grid > div{
    margin-bottom:12px;
  }

  .wa-footer-bottom-grid > div:last-child{
    margin-bottom:0;
  }
}
