/* =========================
   AVIATOR FOOTER FINAL CSS
   ========================= */

.avx2f-wrap,
.avx2f-wrap *{
  box-sizing:border-box;
}

.avx2f-wrap{
  --avx2f-bg-1:#071018;
  --avx2f-bg-2:#0b1420;
  --avx2f-bg-3:#0e1825;
  --avx2f-border:rgba(255,255,255,.08);
  --avx2f-border-strong:rgba(255,255,255,.12);
  --avx2f-text:#ffffff;
  --avx2f-muted:rgba(255,255,255,.70);
  --avx2f-soft:rgba(255,255,255,.52);
  --avx2f-accent:#2fe7ff;
  --avx2f-accent-2:#00ffb3;
  --avx2f-card-bg:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  --avx2f-shadow:0 18px 40px rgba(0,0,0,.28);

  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(0,255,179,.10), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(47,231,255,.10), transparent 25%),
    linear-gradient(180deg,var(--avx2f-bg-1) 0%, var(--avx2f-bg-2) 52%, var(--avx2f-bg-3) 100%);
  color:var(--avx2f-text);
  border-top:1px solid var(--avx2f-border);
  font-family:Inter, Arial, sans-serif;
  padding:32px 16px 18px;
}

.avx2f-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.18;
  pointer-events:none;
}

.avx2f-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1380px;
  margin:0 auto;
}

/* =========================
   TOP BAR
   ========================= */

.avx2f-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
  padding:14px 16px;
  border:1px solid var(--avx2f-border);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--avx2f-shadow);
}

.avx2f-brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.avx2f-brand-logo{
  width:58px;
  height:58px;
  min-width:58px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--avx2f-border-strong);
  background:#0f1723;
  box-shadow:0 10px 25px rgba(0,0,0,.22);
}

.avx2f-brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.avx2f-brand-text{
  min-width:0;
}

.avx2f-brand-text h2{
  margin:0 0 4px;
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.4px;
  color:#fff;
}

.avx2f-brand-text p{
  margin:0;
  color:var(--avx2f-muted);
  font-size:13px;
  line-height:1.6;
}

.avx2f-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--avx2f-border-strong);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  flex:none;
  transition:.22s ease;
}

.avx2f-status:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.18);
}

.avx2f-status-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#19ff55;
  box-shadow:0 0 10px rgba(25,255,85,.8);
  display:block;
  flex:none;
}

/* =========================
   GRID
   ========================= */

.avx2f-grid{
  display:grid;
  grid-template-columns:1.2fr .85fr .85fr .95fr;
  gap:18px;
  align-items:stretch;
}

.avx2f-card{
  min-width:0;
  height:100%;
  border:1px solid var(--avx2f-border);
  border-radius:24px;
  background:var(--avx2f-card-bg);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--avx2f-shadow);
  padding:24px 22px;
  display:flex;
  flex-direction:column;
}

.avx2f-title{
  display:block;
  margin:0 0 18px;
  position:relative;
  font-size:16px;
  font-weight:900;
  line-height:1.2;
  color:#fff;
  padding-bottom:12px;
  letter-spacing:-.2px;
  text-align:center;
}

.avx2f-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:54px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--avx2f-accent),var(--avx2f-accent-2));
  transform:translateX(-50%);
}

.avx2f-about{
  margin:0;
  color:var(--avx2f-muted);
  font-size:14px;
  line-height:1.9;
  text-align:center;
}

/* =========================
   LINKS
   ========================= */

.avx2f-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.avx2f-links li{
  margin:0;
  padding:0;
}

.avx2f-links a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--avx2f-muted);
  font-size:14px;
  line-height:1.5;
  transition:.22s ease;
}

.avx2f-links a i{
  width:15px;
  min-width:15px;
  color:var(--avx2f-accent);
  font-size:12px;
  text-align:center;
}

.avx2f-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* =========================
   SOCIALS
   ========================= */

.avx2f-socials{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
  margin-left:auto;
  margin-right:auto;
}

.avx2f-socials a{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff !important;
  background:rgba(255,255,255,.05);
  border:1px solid var(--avx2f-border);
  transition:all .22s ease;
}

.avx2f-socials a i{
  color:inherit !important;
  transition:all .22s ease;
}

.avx2f-socials a:hover{
  background:#2fe7ff !important;
  color:#08131d !important;
  border-color:#2fe7ff !important;
  transform:translateY(-2px);
}

/* =========================
   CONTACT
   ========================= */

.avx2f-contact{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
}

.avx2f-contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.05);
  text-align:left;
  width:100%;
}

.avx2f-contact-icon{
  width:38px;
  height:38px;
  min-width:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--avx2f-accent),var(--avx2f-accent-2));
  color:#08131d;
  box-shadow:0 10px 20px rgba(0,0,0,.16);
}

.avx2f-contact-text{
  min-width:0;
}

.avx2f-contact-text strong{
  display:block;
  font-size:13px;
  line-height:1.3;
  margin-bottom:4px;
  color:#fff;
}

.avx2f-contact-text span{
  display:block;
  color:var(--avx2f-muted);
  font-size:13px;
  line-height:1.55;
  word-break:break-word;
}

.avx2f-mini{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.avx2f-mini strong{
  display:block;
  font-size:13px;
  margin-bottom:5px;
  color:#fff;
}

.avx2f-mini span{
  display:block;
  color:var(--avx2f-muted);
  font-size:13px;
  line-height:1.55;
}

/* =========================
   SPECIAL BLOCKS
   ========================= */

.avx2f-logo-center{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  margin:0 auto 14px;
}

.avx2f-logo-center img{
  display:block;
  max-width:100%;
  height:auto;
  margin:0 auto;
}

.avx2f-card img[alt="avilisans"]{
  display:block;
  margin:0 auto 14px auto;
  max-width:100%;
  height:auto;
  float:none;
}

.avx2f-mini-license-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:linear-gradient(135deg,#7441ff,#9f6bff);
  color:#fff;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 6px 16px rgba(116,65,255,.22);
  transition:.22s ease;
}

.avx2f-mini-license-btn i{
  font-size:10px;
}

.avx2f-mini-license-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(116,65,255,.30);
}

/* =========================
   BOTTOM
   ========================= */

.avx2f-bottom{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
}

.avx2f-copy{
  justify-self:start;
  color:var(--avx2f-soft);
  font-size:12px;
  line-height:1.6;
}

.avx2f-clock{
  justify-self:center;
  font-size:14px;
  font-weight:800;
  color:#fff;
  white-space:nowrap;
  text-shadow:0 0 8px rgba(255,255,255,.08);
}

.avx2f-bottom-links{
  justify-self:end;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.avx2f-bottom-links a{
  text-decoration:none;
  color:var(--avx2f-muted);
  font-size:12px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  transition:.22s ease;
}

.avx2f-bottom-links a:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
}

/* =========================
   DESKTOP ONLY
   ========================= */

@media (min-width:1100px){
  .avx2f-card:not(:first-child):not(:nth-child(3)){
    align-items:flex-start;
    text-align:left;
  }

  .avx2f-card:not(:first-child):not(:nth-child(3)) .avx2f-title{
    text-align:left;
  }

  .avx2f-card:not(:first-child):not(:nth-child(3)) .avx2f-title::after{
    left:0;
    transform:none;
  }

  .avx2f-card:not(:first-child):not(:nth-child(3)) .avx2f-links a{
    justify-content:flex-start;
  }
}

/* =========================
   TABLET
   ========================= */

@media (max-width:1180px){
  .avx2f-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width:820px){
  .avx2f-wrap{
    padding:22px 12px 16px;
  }

  .avx2f-topbar{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:14px;
    padding:14px;
    border-radius:18px;
  }

  .avx2f-brand{
    width:100%;
    display:block;
    text-align:center;
    margin:0 auto;
  }

  .avx2f-brand > div{
    width:100%;
    text-align:center;
  }

  .avx2f-brand img{
    display:block;
    margin:0 auto;
    max-width:220px;
    height:auto;
  }

  .avx2f-brand-logo{
    margin:0 auto;
    width:fit-content;
  }

  .avx2f-brand-text,
  .avx2f-brand-text h2,
  .avx2f-brand-text p{
    text-align:center;
  }

  .avx2f-status{
    width:auto;
    margin:0 auto;
  }

  .avx2f-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .avx2f-card{
    padding:20px 18px;
    border-radius:20px;
    text-align:center;
    align-items:center;
  }

  .avx2f-title{
    font-size:17px;
    margin-bottom:16px;
    text-align:center;
  }

  .avx2f-title::after{
    left:50%;
    transform:translateX(-50%);
  }

  .avx2f-about{
    font-size:14px;
    line-height:1.8;
    text-align:center;
  }

  .avx2f-links a{
    justify-content:center;
  }

  .avx2f-socials{
    justify-content:center;
  }

  .avx2f-contact{
    width:100%;
  }

  .avx2f-contact-item{
    width:100%;
    text-align:left;
  }

  .avx2f-bottom{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }

  .avx2f-copy,
  .avx2f-clock,
  .avx2f-bottom-links{
    justify-self:center;
    text-align:center;
  }

  .avx2f-bottom-links{
    width:100%;
    justify-content:center;
  }
}

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width:480px){
  .avx2f-brand-logo{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:16px;
  }

  .avx2f-brand-text h2{
    font-size:20px;
  }

  .avx2f-brand-text p{
    font-size:12px;
  }

  .avx2f-socials a{
    width:40px;
    height:40px;
    border-radius:12px;
  }

  .avx2f-contact-item{
    padding:11px;
  }

  .avx2f-contact-icon{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:11px;
  }

  .avx2f-mini-license-btn i{
    font-size:11px;
  }
}
