.sf-footer, .sf-footer *{ box-sizing:border-box; }

.sf-footer{
  position:relative;
  background:#14213A;
  color:#D8DCE8;
  font-family:'Inter',system-ui,sans-serif;
  overflow:hidden;
}

.sf-footer-flow{
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, transparent 0%, #1F7A6C 15%, #F2A93B 50%, #1F7A6C 85%, transparent 100%);
  background-size:200% 100%;
  animation:sfFooterFlow 7s linear infinite;
  opacity:.65;
}
@media (prefers-reduced-motion: reduce){ .sf-footer-flow{ animation:none; } }
@keyframes sfFooterFlow{ 0%{background-position:0% 0;} 100%{background-position:-200% 0;} }

.sf-footer-inner{
  max-width:1240px;
  margin:0 auto;
  padding:64px 24px 32px;
}

.sf-footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
}

.sf-footer-col{ min-width:0; }

.sf-footer-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  margin-bottom:16px;
}
.sf-footer-mark{ width:32px; height:32px; flex-shrink:0; }
.sf-footer-word{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:19px;
  color:#FCFBF8;
  letter-spacing:-0.01em;
}
.sf-footer-word span{ color:#5FC9B5; }

.sf-footer-tagline{
  font-size:14.5px;
  line-height:1.65;
  color:#9CA6C2;
  max-width:320px;
  margin:0;
}

.sf-footer-heading{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:15px;
  color:#FCFBF8;
  margin:0 0 18px;
  letter-spacing:-0.01em;
}

.sf-footer-links{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sf-footer-links a{
  color:#B9C1D9;
  text-decoration:none;
  font-size:14.5px;
  transition:color .2s ease;
}
.sf-footer-links a:hover, .sf-footer-links a:focus-visible{ color:#F2A93B; }
.sf-footer-links a:focus-visible{ outline:2px solid #1F7A6C; outline-offset:3px; border-radius:4px; }

.sf-footer-cta{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:22px;
}
.sf-footer-cta-copy{
  font-size:14px;
  line-height:1.6;
  color:#9CA6C2;
  margin:0 0 18px;
}
.sf-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  background:linear-gradient(120deg,#F2A93B 0%,#E08A1E 100%);
  color:#20140A;
  font-weight:600;
  font-size:14px;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(224,138,30,0.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.sf-footer-btn:hover{ transform:translateY(-1px); box-shadow:0 6px 18px rgba(224,138,30,0.38); }
.sf-footer-btn:focus-visible{ outline:2px solid #FCFBF8; outline-offset:3px; }

.sf-footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:24px;
  font-size:13px;
  color:#7C86A6;
  text-align:center;
}

@media (max-width: 980px){
  .sf-footer-grid{
    grid-template-columns:1fr 1fr;
    row-gap:36px;
  }
  .sf-footer-brand{ grid-column:1 / -1; }
  .sf-footer-tagline{ max-width:480px; }
}

@media (max-width: 600px){
  .sf-footer-inner{ padding:48px 20px 28px; }
  .sf-footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .sf-footer-cta{ padding:20px; }
}