* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2585FF 0%, #2585FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-image {
  height: 45px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-logo .logo-image:hover {
  transform: scale(1.05);
}

.nav-logo a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.nav-logo a:hover .logo-image {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2585FF;
}

.emphasis-primary {
  font-size: 1.4em;
  /* 기존 텍스트보다 큼 */
  font-weight: 700;
  /* 굵게 */
  color: white;
  /* 강조 색상 (예시: 오렌지) */
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 햄버거 메뉴 활성화 시 애니메이션 */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* 모바일 메뉴 스타일 */
.nav-menu.mobile {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

.nav-menu.mobile.active {
  left: 0;
}

.nav-menu.mobile li {
  margin: 1rem 0;
}

.nav-menu.mobile a {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2585FF 0%, #2585FF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  width: 500px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-button {
  background: white;
  color: #2585FF;

  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-visual {
  position: relative;
  height: 400px;
}

.hero-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  position: absolute;
  animation: float 6s ease-in-out infinite;
  transform: translateY(0);
}

.speech-bubble {
  position: absolute;
  background: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.bubble-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 50%;
  right: 20%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.icon {
  position: absolute;
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0.5s;
}

.icon-2 {
  top: 60%;
  left: 5%;
  animation-delay: 1.5s;
}

.icon-3 {
  bottom: 30%;
  right: 5%;
  animation-delay: 2.5s;
}

.icon-4 {
  top: 30%;
  left: 50%;
  animation-delay: 3.5s;
}

.hero-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2585FF, #2585FF);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.card-blue .service-icon {
  color: #2585FF;
}

.card-green .service-icon {
  color: #51cf66;
}

.card-purple .service-icon {
  color: #845ef7;
}

.card-orange .service-icon {
  color: #ff8c42;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(90deg, #DCEBFE 0%, #FEF0F2 100%);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #2585FF, #2585FF);
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
  min-width: 50px;
  text-align: center;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-item p {
  color: #666;
  line-height: 1.5;
}

.features-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #333;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.review-preview {
  height: 100%;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.profile-pic {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6c7293, #8b8fb8);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.profile-pic::before {
  content: '🧑🏻';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.profile-info h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.review-img:nth-child(1) {
  background: linear-gradient(135deg, #e8eaf0, #d6d8e0);
}

.review-img:nth-child(1)::before {
  content: '🍽️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  opacity: 0.8;
}

.review-img:nth-child(2) {
  background: linear-gradient(135deg, #f1f3f5, #e3e6ea);
}

.review-img:nth-child(2)::before {
  content: '☕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  opacity: 0.8;
}

.review-img:nth-child(3) {
  background: linear-gradient(135deg, #eef2f7, #dfe4ec);
}

.review-img:nth-child(3)::before {
  content: '🏪';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  opacity: 0.8;
}

.review-text {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.review-text p {
  margin: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
  /* animation: fadeInOut 12s infinite; */
}

@keyframes fadeInOut {

  0%,
  20% {
    opacity: 1;
  }

  25%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Results Page Section */
.results-page {
  padding: 5rem 0;
  background: white;
}

.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.results-visual {
  display: flex;
  justify-content: center;
}

.results-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.results-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.results-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.results-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.results-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ff6b35;
  font-weight: 600;
}

.results-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.results-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.results-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #2585FF, #2585FF);
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
  min-width: 50px;
  text-align: center;
}

.results-feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.results-feature p {
  color: #666;
  line-height: 1.5;
}

.results-highlight {
  background: linear-gradient(135deg, #fff4e6, #f8f9fa);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #2585FF;
  margin-top: 2rem;
}

.results-highlight p {
  margin: 0;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(90deg, #DCEBFE 0%, #FEF0F2 100%);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background: linear-gradient(135deg, #2585FF, #2585FF);
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
}

.feature-group h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.feature-group ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-group li {
  padding: 0.5rem 0;
  color: #666;
}

.addon-option {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.addon-name {
  font-weight: 600;
  color: #333;
}

.addon-price {
  color: #2585FF;
  font-weight: 600;
}

.addon-desc {
  width: 100%;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.pricing-cta {
  width: 100%;
  background: linear-gradient(101deg, rgb(255, 187, 121) 5.55%, rgb(255, 100, 203) 27.07%, rgb(183, 123, 255) 48.59%, rgb(131, 160, 238) 70.11%, rgb(77, 188, 243) 91.64%);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 133, 255, 0.3);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2585FF, #2585FF);
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-cta {
  background: white;
  color: #2585FF;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-item p {
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(90deg, #DCEBFE 0%, #FEF0F2 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form button {
  background: linear-gradient(135deg, #2585FF, #2585FF);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 133, 255, 0.3);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  opacity: 0.8;
}

.company-info {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
}

.company-info p {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

/* RSS 링크 특별 스타일 */
.footer-section a[href*="feed.xml"] {
  color: #ff6b35;
  font-weight: 500;
}

.footer-section a[href*="feed.xml"]:hover {
  color: #ff8c42;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  opacity: 0.8;
}

/* 카카오톡 플로팅 버튼 */
#kakao-talk-channel-chat-button {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
}

#kakao-talk-channel-chat-button:hover {
  transform: translateY(-3px) !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
  }

  .nav-menu:not(.mobile) {
    display: none;
  }

  .nav-logo .logo-image {
    height: 38px;
    max-width: 200px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-content {
    grid-template-columns: 1fr;
  }

  .results-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .results-visual {
    order: 2;
  }

  .results-text {
    order: 1;
  }

  .results-text h2 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-container,
  .nav-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  #kakao-talk-channel-chat-button {
    bottom: 15px !important;
    right: 15px !important;
    transform: scale(0.8) !important;
  }

  #kakao-talk-channel-chat-button:hover {
    transform: scale(0.8) translateY(-3px) !important;
  }
}