/* 견적/요금과 동일 푸터 (estimate.css에서 .footer 블록만 추출) */
.footer {
  background: #fff;
  padding: 60px 30px 40px;
  border-top: 1px solid #ebecf0;
  margin-top: auto;
}
.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}
.footer .footer-top .footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.footer .footer-top .footer-left .footer-logo img {
  height: 28px;
  width: auto;
}
.footer .footer-top .footer-right {
  flex: 1;
  min-width: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: #475467;
}
.footer .footer-top .footer-right a {
  color: #0080ff;
  text-decoration: none;
}
.footer .footer-top .footer-right a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-right .footer-block-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}
.footer .footer-top .footer-right .footer-phone {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.02em;
}
.footer .footer-top .footer-right .footer-phone a {
  color: inherit;
}
.footer .footer-top .footer-right .footer-phone a:hover {
  color: #0080ff;
}
.footer .footer-top .footer-right .footer-meta {
  margin: 0 0 20px;
  color: #505050;
}
.footer .footer-top .footer-right .footer-legal p {
  margin: 0 0 8px;
}
.footer .footer-top .footer-right .footer-legal p:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
}
.footer .footer-bottom .copyright {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.footer .footer-bottom .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.footer .footer-bottom .footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-bottom .footer-links a:hover {
  color: #0080ff;
}
.footer .footer-bottom .footer-links a:focus-visible {
  outline: 2px solid #0080ff;
  outline-offset: 2px;
  border-radius: 2px;
}
.footer .footer-bottom .footer-links a:first-child::after {
  content: "|";
  margin: 0 14px;
  color: #d1d5db;
  font-weight: 400;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer-top .footer-right {
    max-width: none;
  }
  .footer .footer-top .footer-right .footer-phone {
    font-size: 20px;
  }
  .footer .footer-top .footer-right .footer-meta {
    font-size: 13px;
  }
  .footer .footer-top .footer-right .footer-legal {
    font-size: 13px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-bottom .copyright {
    font-size: 12px;
  }
  .footer .footer-bottom .footer-links {
    width: 100%;
  }
}
