body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
}
.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background-image: url('image/002.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: 60px 20px 40px 20px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  z-index: 2;
  text-align: center;
}
.hero-img {
  width: 320px;
  max-width: 90vw;
  margin-bottom: 20px;
  border-radius: 20px;
}
.cta-btn {
  background: #fff;
  color: #2193b0;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(33,147,176,0.15);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #2193b0;
  color: #fff;
}
.features {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
.feature-item {
  position: relative;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}
.feature-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.feature-content p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e3f0f7;
  padding: 60px 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.review-summary,
.review-list {
  width: 100%;
}
.review-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 40px auto 0 auto;
  max-width: 900px;
}
.review-card {
  display: flex;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(33,147,176,0.07);
  padding: 12px 12px;
  align-items: center;
  min-height: 120px;
  position: relative;
  gap: 18px;
}
.review-info {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}
.stars {
  color: #e74c3c;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.stars .score {
  color: #222;
  font-size: 1rem;
  margin-left: 4px;
  font-weight: normal;
}
.meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 6px;
}
.meta .user {
  font-weight: bold;
  color: #2193b0;
}
.text {
  font-size: 0.93rem;
  color: #222;
  margin-bottom: 0;
  line-height: 1.5;
  word-break: break-all;
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  text-overflow: unset;
  max-height: none;
}
.review-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 0;
  background: #f1f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-count {
  position: absolute;
  bottom: 4px;
  right: 6px;
  background: rgba(34,34,34,0.85);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 1px 7px;
  font-weight: bold;
}
.footer {
  background: #f8fafc;
  color: #222;
  font-size: 1rem;
  margin-top: 1px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1px;
  padding: 1px 1px 1px 1px;
  border-bottom: 1px solid #e3e6ea;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-col {
  flex: 1 1 0;
  min-width: 180px;
  padding: 0 12px;
  border-right: 1px solid #e3e6ea;
}
.footer-col:last-child {
  border-right: none;
}
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
}
.footer-phone {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 8px;
}
.footer-select, .footer-input {
  margin-top: 8px;
  padding: 4px 8px;
  border: 1px solid #d3d7db;
  border-radius: 4px;
  font-size: 0.98rem;
}
.footer-col.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col.menu li {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 4px;
  padding: 7px 10px;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: #222;
}
.footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 32px 18px 32px;
  max-width: 1100px;
  margin: 24px auto 0 auto;
  background: #fff;
  border-radius: 18px;
}
.footer-company {
  flex: 2 1 0;
  min-width: 260px;
}
.footer-company h5 {
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}
.footer-company-row {
  font-size: 0.97rem;
  color: #555;
  margin-bottom: 4px;
}
.footer-label {
  font-weight: bold;
  color: #222;
}
.footer-pay-logos {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-pay-logos img {
  height: 44px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 4px 10px;
}
.footer-bottom {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.footer-escrow {
  flex: 1.2 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 320px;
  padding-left: 16px;
}
.escrow-info {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.6;
}
.escrow-badge {
  display: inline-block;
  background: #666;
  color: #fff;
  font-size: 0.97rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 3px 10px 2px 10px;
  margin-right: 4px;
  letter-spacing: 0.5px;
}
.escrow-btn {
  display: inline-block;
  background: #fff;
  color: #444;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 0.97rem;
  padding: 4px 16px;
  margin-bottom: 18px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: background 0.2s, border 0.2s;
}
.escrow-btn:hover {
  background: #f5f5f5;
  border: 1px solid #888;
}
@media (max-width: 1100px) {
  .footer-top, .footer-mid {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px 8px 8px;
  }
  .footer-col, .footer-company, .footer-pay-logos {
    border-right: none !important;
    padding: 0;
    min-width: 0;
  }
  .footer-pay-logos {
    margin-top: 10px;
  }
  .footer-escrow {
    align-items: flex-start;
    min-width: 0;
    margin-top: 18px;
  }
}
/* 스크롤 애니메이션 */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 반응형 레이아웃 */
@media (max-width: 900px) {
  .features-list {
    grid-template-columns: 1fr;
  }
  .feature-item {
    min-height: 250px;
  }
  .review-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-card {
    flex-direction: row;
    padding: 16px 10px;
  }
  .review-thumb {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 40px 10px 20px 10px;
  }
  .features, .reviews {
    padding: 40px 10px;
  }
  .footer {
    padding: 20px 10px;
  }
  .hero-img {
    width: 90vw;
  }
  .footer-top, .footer-mid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-col, .footer-company, .footer-escrow {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
}
.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f6f8;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(33,147,176,0.04);
  padding: 24px 16px 18px 16px;
  margin: 24px 0 32px 0;
  gap: 16px;
  max-width: 900px;
}
.summary-item {
  flex: 1 1 0;
  text-align: center;
  min-width: 120px;
}
.summary-item.score {
  min-width: 180px;
}
.summary-item.ratio {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.summary-label {
  font-size: 1.13rem;
  color: #222;
  font-weight: bold;
  margin-bottom: 12px;
}
.summary-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.star {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23FFD600" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15,9 22,9.3 17,14.1 18.5,21 12,17.3 5.5,21 7,14.1 2,9.3 9,9"/></svg>') no-repeat center/contain;
}
.star.half {
  background: url('data:image/svg+xml;utf8,<svg fill="%23FFD600" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23FFD600"/><stop offset="50%" stop-color="%23eee"/></linearGradient></defs><polygon points="12,2 15,9 22,9.3 17,14.1 18.5,21 12,17.3 5.5,21 7,14.1 2,9.3 9,9" fill="url(%23half)"/></svg>') no-repeat center/contain;
}
.summary-score {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 2px;
}
.summary-score .slash {
  font-size: 1.2rem;
  color: #bbb;
  margin-left: 2px;
}
.summary-desc {
  font-size: 0.98rem;
  color: #888;
}
.summary-item.count {
  min-width: 160px;
}
.summary-icon {
  font-size: 2.5rem;
  color: #bbb;
  margin-bottom: 6px;
}
.icon-chat::before {
  content: '\1F4AC';
  font-size: 2.5rem;
  color: #bbb;
}
.summary-count {
  font-size: 2.1rem;
  font-weight: bold;
  color: #222;
}
.summary-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 0;
  justify-content: center;
  min-height: 110px;
}
.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 20px;
}
.bar {
  width: 10px;
  min-height: 38px;
  max-height: 72px;
  border-radius: 8px 8px 12px 12px;
  background: #e74c3c;
  margin-bottom: 8px;
  transition: height 0.4s;
  display: block;
  box-shadow: 0 2px 8px rgba(231,76,60,0.10);
  position: relative;
}
.bar-item:not(.bar-5) .bar {
  background: #d3d7db;
  box-shadow: 0 2px 8px rgba(180,180,180,0.10);
}
.bar-count {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 2px 10px;
  font-weight: bold;
  z-index: 1;
  min-width: 38px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(231,76,60,0.08);
  letter-spacing: 0.5px;
  display: none;
}
.bar-5 .bar-count {
  display: block;
}
.bar-label {
  font-size: 1.08rem;
  color: #888;
  margin-top: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.bar-dot {
  width: 14px;
  height: 14px;
  background: #d3d7db;
  border-radius: 50%;
  margin-top: 2px;
  margin-bottom: 0;
  display: block;
}
.bar-5 .bar-dot {
  background: #e74c3c;
}
@media (max-width: 900px) {
  .review-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 10px 18px 10px;
  }
  .summary-item {
    min-width: 0;
    margin-bottom: 0;
  }
}
.fixed-buttons {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1000;
}
.fixed-btn {
  width: 88px;
  height: 88px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(60,60,60,0.10);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 0;
}
.fixed-btn:active, .fixed-btn:hover {
  box-shadow: 0 8px 24px rgba(60,60,60,0.18);
  transform: translateY(-2px) scale(1.04);
}
.fixed-btn svg {
  width: 64px;
  height: 64px;
  display: block;
}
@media (max-width: 600px) {
  .fixed-buttons {
    right: 12px;
    bottom: 12px;
    gap: 16px;
  }
  .fixed-btn {
    width: 64px;
    height: 64px;
  }
  .fixed-btn svg {
    width: 44px;
    height: 44px;
  }
}
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(33,147,176,0.07);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s;
  opacity: 1;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
}
.nav-logo img {
  height: 38px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  color: #2193b0;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: #e3f0f7;
  color: #17627a;
}
.nav-cta {
  background: #2193b0;
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(33,147,176,0.10);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: #17627a;
  color: #fff;
}
.main-nav.nav-hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.main-nav.nav-show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 900px) {
  .nav-inner {
    padding: 0 12px;
    height: 54px;
  }
  .nav-logo img {
    height: 28px;
  }
  .nav-menu {
    display: none;
  }
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2100;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 3px 0;
  background: #2193b0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(33,147,176,0.10);
  border-radius: 0 0 16px 16px;
  padding: 18px 0 12px 0;
  z-index: 2050;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.nav-mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-mobile-menu {
    display: none;
  }
  .nav-mobile-menu.open {
    display: flex;
  }
} 