:root{
  --iy-navyA:#0b1020;
  --iy-navyB:#141a3a;
  --iy-navyC:#1c0f2e;

  --iy-text: rgba(255,255,255,.92);
  --iy-muted: rgba(255,255,255,.70);

  --iy-gold:#F6C945;
}

/* ================= FOOTER ================= */
.iy-footer{
  position: relative;
  padding: 44px 0 22px;
  color: var(--iy-text);
  background:
    radial-gradient(700px 140px at 12% 0%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(700px 140px at 88% 0%, rgba(124,58,237,.10), transparent 60%),
    linear-gradient(135deg, var(--iy-navyA) 0%, var(--iy-navyB) 42%, var(--iy-navyC) 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Footer içinde underline KAPALI */
.iy-footer a,
.iy-footer a:hover,
.iy-footer a:focus,
.iy-footer a:active{
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ================= LAYOUT ================= */
.iy-footer__container{
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.iy-footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 26px;
  align-items: start;
}

/* ================= BRAND ================= */
.iy-footer__logo{
  display: inline-block;
  color: #fff;
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 18px;
  margin-bottom: 10px;
}

.iy-footer__tagline{
  margin: 0 0 14px;
  color: var(--iy-muted);
  line-height: 1.55;
  max-width: 42ch;
}

/* ================= SOCIAL ================= */
.iy-footer__social{
  display:flex;
  gap:10px;
}

.iy-footer__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .18s ease;
}

.iy-footer__icon:hover{
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}

/* ================= LISTS ================= */
.iy-footer__title{
  font-weight: 800;
  margin-bottom: 10px;
}

.iy-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.iy-footer__list a{
  color: var(--iy-muted);
  padding: 4px 6px;
  margin-left: -6px;
  border-radius: 10px;
  transition: background .16s ease;
}

/* Hover → sadece arka plan */
.iy-footer__list a:hover{
  color: var(--iy-muted);
  background: rgba(255,255,255,.06);
}

/* ================= CTA ================= */
.iy-footer__cta{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.iy-footer__cta:hover{
  background: rgba(255,255,255,.065);
}

.iy-footer__ctaText{
  margin: 0 0 12px;
  color: var(--iy-muted);
  line-height: 1.55;
}

.iy-footer__ctaRow{
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

/* ================= BUTTONS ================= */
.iy-footer__btn{
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  letter-spacing: .15px;
  line-height: 1;
  white-space: nowrap;
  flex: 1 1 0;
  transition: background .18s ease;
}

/* Primary */
.iy-footer__btn--primary{
  color: #101225;
  background: linear-gradient(90deg, var(--iy-gold), #ffd977);
}

.iy-footer__btn--primary:hover{
  color: #101225;
  background: linear-gradient(90deg, #ffd65a, #ffe39a);
}

/* Ghost */
.iy-footer__btn--ghost{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.iy-footer__btn--ghost:hover{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.09);
}

/* ================= BOTTOM ================= */
.iy-footer__notice{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.iy-footer__bottom{
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

.iy-footer__links{
  display: flex;
  gap: 10px;
}

.iy-footer__links a{
  color: rgba(255,255,255,.70);
  padding: 4px 6px;
  border-radius: 10px;
  transition: background .16s ease;
}

.iy-footer__links a:hover{
  color: rgba(255,255,255,.70);
  background: rgba(255,255,255,.06);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .iy-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .iy-footer__grid{
    grid-template-columns: 1fr;
  }
  .iy-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .iy-footer__ctaRow{
    flex-wrap: wrap;
  }
}
