/* Kerege Footer v1.0 */
*,*::before,*::after{box-sizing:border-box}

.kf-footer{
  background:var(--kf-bg,#0a1628);
  color:var(--kf-text,#fff);
  font-family:'Inter',sans-serif;
  width:100%;
  margin-top:0;
}

.kf-inner{
  max-width:1280px;
  margin:0 auto;
  padding:64px 40px 40px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;
}

/* COL TITLE */
.kf-col-title{
  color:var(--kf-accent,#00b4b4);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin:0 0 20px;
  padding-bottom:10px;
  border-bottom:1px solid var(--kf-border,rgba(255,255,255,.08));
}

/* BRAND COL */
.kf-logo-text{
  font-size:22px;
  font-weight:700;
  color:var(--kf-text,#fff);
  margin-bottom:10px;
  letter-spacing:-.3px;
}
.kf-tagline{
  color:var(--kf-muted,rgba(255,255,255,.6));
  font-size:14px;
  line-height:1.6;
  margin:0 0 24px;
  max-width:260px;
}

/* SOCIAL */
.kf-social{display:flex;gap:10px;flex-wrap:wrap}
.kf-soc-link{
  width:38px;height:38px;
  border-radius:8px;
  border:1px solid var(--kf-border,rgba(255,255,255,.12));
  display:flex;align-items:center;justify-content:center;
  color:var(--kf-muted,rgba(255,255,255,.6));
  text-decoration:none;
  transition:background .2s,color .2s,border-color .2s,transform .15s;
}
.kf-soc-link:hover{
  background:var(--kf-accent,#00b4b4);
  color:#fff;
  border-color:var(--kf-accent,#00b4b4);
  transform:translateY(-2px);
}

/* CONTACT COL */
.kf-contact-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--kf-muted,rgba(255,255,255,.6));
  text-decoration:none;
  font-size:14px;
  line-height:1.5;
  margin-bottom:16px;
  transition:color .2s;
}
a.kf-contact-row:hover{color:var(--kf-accent,#00b4b4)}
.kf-icon{
  width:32px;height:32px;
  border-radius:6px;
  background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;
  color:var(--kf-accent,#00b4b4);
  flex-shrink:0;
}

/* QUICK LINKS */
.kf-links ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:4px}
.kf-links a{
  color:var(--kf-muted,rgba(255,255,255,.6));
  text-decoration:none;
  font-size:14px;
  padding:6px 0;
  display:flex;align-items:center;gap:8px;
  transition:color .2s,padding-left .2s;
}
.kf-links a::before{
  content:'›';
  color:var(--kf-accent,#00b4b4);
  font-size:16px;
  line-height:1;
}
.kf-links a:hover{color:#fff;padding-left:4px}

/* BOTTOM BAR */
.kf-bottom{
  border-top:1px solid var(--kf-border,rgba(255,255,255,.08));
  background:rgba(0,0,0,.15);
}
.kf-bottom-inner{
  max-width:1280px;
  margin:0 auto;
  padding:18px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
.kf-copy{color:var(--kf-muted,rgba(255,255,255,.45));font-size:13px}
.kf-made{color:var(--kf-muted,rgba(255,255,255,.35));font-size:12px}

/* MOBILE */
@media(max-width:900px){
  .kf-inner{grid-template-columns:1fr 1fr;gap:32px;padding:40px 24px 32px}
  .kf-brand{grid-column:1/-1}
}
@media(max-width:560px){
  .kf-inner{grid-template-columns:1fr;gap:28px;padding:32px 20px 24px}
  .kf-bottom-inner{flex-direction:column;align-items:center;text-align:center;padding:14px 20px}
}
