/* SOON V42 — homepage-identical footer foundation for every public page */

/* shared container and buttons used by homepage footer */
.container{
  width:min(1120px,calc(100% - 40px));
  margin-left:auto;
  margin-right:auto;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:800;
  line-height:1;
  transition:.2s ease;
}
.btn.white{background:#fff;color:#17191d !important;border:1px solid #fff}
.btn.green{background:#11b45b;color:#fff !important;border:1px solid #11b45b}
.btn:hover{transform:translateY(-1px)}

/* EXACT homepage CTA classes */
.cta-restored{
  background:linear-gradient(100deg,#c80f16,#ed1c24);
  color:#fff;
  padding:44px 0;
  margin:0;
}
.cta-restored-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
}
.cta-restored-inner>div:first-child{min-width:0}
.cta-restored span{
  display:block;
  font-size:12px;
  font-weight:700;
  opacity:.9;
}
.cta-restored h2{
  color:#fff;
  font-size:38px;
  line-height:1.25;
  font-weight:800;
  margin:3px 0;
}
.cta-restored p{
  margin:0;
  color:#ffe9ea;
  line-height:1.8;
}
.cta-restored-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}

/* EXACT homepage footer structure */
.footer{
  background:#101214;
  color:#fff;
  padding:46px 0 0;
  margin:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr 1.05fr 1fr;
  gap:54px;
  align-items:start;
  padding-bottom:38px;
}
.footer-grid>div{min-width:0}
.footer-grid>div>strong,
.footer .brand-foot>strong{
  display:block;
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:14px;
}
.footer .brand-foot{
  text-align:right;
}
.footer .brand-foot p{
  color:#aeb3b9;
  font-size:12px;
  line-height:1.9;
  max-width:275px;
  margin:0;
}
.footer-grid>div:not(.brand-foot)>a{
  display:block;
  width:fit-content;
  max-width:100%;
  color:#bec3c9;
  text-decoration:none;
  font-size:12px;
  line-height:1.65;
  margin-bottom:8px;
}
.footer-grid>div:not(.brand-foot)>a:hover{color:#ed1c24}
.footer .footer-contact-col>.footer-contact{
  direction:ltr;
  unicode-bidi:plaintext;
}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#7f858c;
  font-size:10px;
  line-height:1.6;
}
.foot-bottom a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}
.foot-bottom a:hover{color:#ed1c24}

@media(max-width:980px){
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:34px 44px;
  }
}
@media(max-width:640px){
  .container{width:min(100% - 24px,1120px)}
  .cta-restored{padding:34px 0}
  .cta-restored-inner{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
    gap:18px;
  }
  .cta-restored h2{font-size:29px}
  .cta-restored-actions{flex-direction:column}
  .cta-restored-actions .btn{width:100%;min-height:46px}
  .footer{padding-top:36px}
  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
    text-align:center;
    padding-bottom:28px;
  }
  .footer .brand-foot{text-align:center}
  .footer .brand-foot p{margin-inline:auto}
  .footer-grid>div:not(.brand-foot)>a{margin-left:auto;margin-right:auto}
  .footer .brand-foot img{margin-left:auto !important;margin-right:auto !important}
  .footer .footer-contact-col{align-items:center !important}
  .footer .footer-contact-col>.footer-socials{justify-content:center !important}
  .foot-bottom{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:5px;
    padding:14px 0;
  }
}
