/* 랜딩 홈(.landing-wrap .header)과 동일한 고정 헤더 — 좌우 여백은 .inner만 사용 */
.estimate-container .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.estimate-container .header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.estimate-container .header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.estimate-container .header .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.estimate-container .header .right .btn-apply {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 600;
}

.estimate-container {
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Pretendard", sans-serif;
  color: #333;
  background: #fff;
}
@media (max-width: 768px) {
  .estimate-container {
    padding-bottom: 40px;
  }
}

.estimate-main {
  flex: 1;
}

.estimate-hero {
  margin: 150px auto 56px;
  padding: 0 30px;
  max-width: 1200px;
  text-align: center;
}
.estimate-hero .sub-title {
  display: block;
  color: #0080ff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.estimate-hero .main-title {
  font-size: 40px;
  font-weight: 600;
  color: #101828;
  margin: 0 0 16px;
  line-height: 1.25;
}
.estimate-hero .description {
  margin: 0;
  font-size: 20px;
  color: #111111;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .estimate-hero {
    margin: 120px auto 40px;
    padding: 0 20px;
  }
  .estimate-hero .main-title {
    font-size: 24px;
  }
  .estimate-hero .description {
    font-size: 14px;
  }
}

.estimate-body {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px 100px;
}
@media (max-width: 768px) {
  .estimate-body {
    padding: 0 16px 80px;
  }
}

.estimate-step {
  margin-bottom: 48px;
  padding: 28px 32px;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #ebecf0;
  transition: box-shadow 0.2s ease;
}
.estimate-step:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .estimate-step {
    padding: 20px 18px;
    margin-bottom: 32px;
  }
}

.estimate-step__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
}

.estimate-step__hint {
  display: inline;
  font-weight: 500;
  font-size: 14px;
  color: #475467;
  margin-left: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips--wrap {
  max-width: 100%;
}

.chip {
  appearance: none;
  border: 1px solid #dfe1e6;
  background: #fff;
  color: #475467;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.chip:hover {
  border-color: #0080ff;
}
.chip--active {
  border-color: #0080ff;
  background: rgba(0, 128, 255, 0.08);
  color: #0080ff;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(0, 128, 255, 0.2);
}

.estimate-contact {
  margin-top: 16px;
  padding-top: 8px;
}

.estimate-contact__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: #101828;
  text-align: center;
}
@media (max-width: 768px) {
  .estimate-contact__title {
    font-size: 22px;
  }
}

.estimate-contact__desc {
  margin: 0 0 32px;
  font-size: 18px;
  color: #505050;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 768px) {
  .estimate-contact__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

.estimate-form-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  background: #f4f5f7;
  padding: 40px 36px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .estimate-form-panel {
    padding: 28px 20px;
  }
}
.estimate-form-panel .estimate-form {
  width: 100%;
}
.estimate-form-panel .estimate-form__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 24px;
}
.estimate-form-panel .estimate-form__row2 .form-field {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .estimate-form-panel .estimate-form__row2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .estimate-form-panel .estimate-form__row2 .form-field {
    margin-bottom: 24px;
  }
  .estimate-form-panel .estimate-form__row2 .form-field:last-child {
    margin-bottom: 0;
  }
}
.estimate-form-panel .form-field {
  margin-bottom: 24px;
}
.estimate-form-panel .form-field:last-of-type {
  margin-bottom: 0;
}
.estimate-form-panel .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  line-height: 20px;
  letter-spacing: -0.35px;
  margin-bottom: 8px;
}
.estimate-form-panel .form-label .required {
  color: #344054;
}
.estimate-form-panel .form-label--section {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #344054;
}
.estimate-form-panel .input-wrapper {
  position: relative;
  width: 100%;
}
.estimate-form-panel .form-input {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #e5e5ec;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 22px;
  letter-spacing: -0.375px;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.estimate-form-panel .form-input::placeholder {
  color: #999999;
}
.estimate-form-panel .form-input:focus {
  border-color: #0080ff;
}
.estimate-form-panel .form-input:-webkit-autofill, .estimate-form-panel .form-input:-webkit-autofill:hover, .estimate-form-panel .form-input:-webkit-autofill:focus, .estimate-form-panel .form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}
.estimate-form-panel .privacy-box {
  background: #fff;
  border: 1px solid #e5e5ec;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #475467;
  max-height: 220px;
  overflow-y: auto;
}
.estimate-form-panel .privacy-box p {
  margin: 0 0 10px;
}
.estimate-form-panel .privacy-box ul {
  margin: 0 0 12px;
  padding-left: 1.1rem;
}
.estimate-form-panel .privacy-box strong {
  color: #344054;
  font-weight: 600;
}
.estimate-form-panel .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: #344054;
  line-height: 20px;
  letter-spacing: -0.35px;
  cursor: pointer;
}
.estimate-form-panel .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  accent-color: #0080ff;
}
.estimate-form-panel .checkbox-label input[type=checkbox]:checked {
  border-color: #0080ff;
  background: url("/assets/icons/common/ic-check.svg") no-repeat center center;
  background-size: 12px 12px;
}
.estimate-form-panel .checkbox-label input[type=checkbox]:focus-visible {
  outline: 2px solid #0080ff;
  outline-offset: 2px;
}
.estimate-form-panel .checkbox-label span {
  flex: 1;
  line-height: 1.5;
  padding-top: 1px;
}
.estimate-form-panel .form-actions {
  margin-top: 28px;
  margin-bottom: 0;
}
.estimate-form-panel .form-actions .btn-next {
  width: 100%;
  height: 44px;
  background-color: #0080ff;
  border: 1px solid #0080ff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 24px;
  letter-spacing: -0.4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.estimate-form-panel .form-actions .btn-next:hover:not(:disabled) {
  opacity: 0.9;
}
.estimate-form-panel .form-actions .btn-next:active:not(:disabled) {
  opacity: 0.8;
}
.estimate-form-panel .form-actions .btn-next:disabled, .estimate-form-panel .form-actions .btn-next.disabled {
  background-color: #cacad7;
  border-color: #cacad7;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

.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%;
  }
}

