/* Hero 섹션 스타일 */
.hero-section {
   color: #000;
   text-align: center;
   padding: 8rem 1rem;
   position: relative;
   overflow: hidden;
}

.hero-section::before,
.hero-section::after {
   font-family: 'Font Awesome 5 Free';
   font-weight: 900;
   position: absolute;
   font-size: 10rem;
   color: rgba(0, 0, 0, 0.05);
   z-index: -1;
}

/*.hero-section::before {
        top: 10%;
        left: 5%;
        }*/

.hero-section::after {
   content: '\f121';
   bottom: 10%;
   right: 30%;
}

.hero-section h1 {
   font-size: 1.25rem;
   font-weight: 300;
   font-family: 'Pretendard', sans-serif;
}
.hero-section .lead {
   margin-top: 1rem;
   font-size: 1.25rem;
   font-family: 'Pretendard', sans-serif;
}
.hero-section .btn {
   margin-top: 2rem;
   background-color: #2a52be;
   color: #fff;
   font-weight: 600;
   padding: 0.75rem 2rem;
   border-radius: 25px;
}
.hero-section .btn:hover {
   background-color: #2a52be;
}

.stats-header {
   text-align: center;
   margin-bottom: 60px;
   padding: 0 20px;
}

.stats-header h1 {
   font-size: 36px;
   font-weight: 700;
   color: #191f28;
   line-height: 1.3;
   letter-spacing: -0.6px;
   margin-bottom: 20px;
}

.stats-header .stats-subtitle {
   font-size: 20px;
   line-height: 1.5;
   color: #4e5968;
   font-weight: 400;
   letter-spacing: -0.3px;
}

.stats-card {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.stats-title {
   position: relative;
   padding-left: 2px;
}

/* 강조 효과 */
.stats-counter-value {
   position: relative;
   z-index: 1;
}

.stats-counter-value::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 30%;
   background: rgba(42, 82, 190, 0.1);
   z-index: -1;
   border-radius: 4px;
}

/* 기능 섹션 스타일 */
.features-section {
   padding: 5rem 1rem;
   background: #fff;
}
.feature-card {
   position: relative;
   z-index: 2;
   background-color: #fff;
   border-radius: 15px;
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
   padding: 2rem;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.feature-icon {
   font-size: 3rem;
   color: #2a52be;
   margin-bottom: 1rem;
}

/* 고객 후기 섹션 스타일 */
.customer-testimonials {
   padding: 5rem 1rem;
   background: #f8f9fa;
}
.blockquote {
   border-left: 4px solid #2a52be;
   padding-left: 1.5rem;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA 섹션 스타일 */
.cta-section {
   background: #2a52be;
   color: #fff;
   padding: 5rem 1rem;
   text-align: center;
}
.cta-section .btn {
   background: #ffd700;
   color: #000;
   font-weight: 600;
   padding: 0.75rem 2rem;
   border-radius: 25px;
}
.cta-section .btn:hover {
   background: #ffc107;
}

.faq-chat-container {
   max-width: 1000px;
   margin: 0 auto;
   padding: 20px;
}

.chat-message {
   display: flex;
   margin-bottom: 20px;
}

.chat-message.q {
   justify-content: flex-start;
}

.chat-message.a {
   justify-content: flex-end;
}

.q .chat-bubble {
   background: #2a52be;
   color: #fff;
   align-self: flex-start;
   border-radius: 15px 15px 15px 0;
}

.a .chat-bubble {
   background: #f1f1f1;
   color: #000;
   align-self: flex-end;
   border-radius: 15px 15px 0 15px;
}

.chat-bubble {
   padding: 15px;
   max-width: 75%;
   word-wrap: break-word;
   line-height: 1.5;
   box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
   display: inline-block;
   white-space: nowrap;
   will-change: transform;
}

.logo-marquee img {
   height: 75px;
   margin-right: 10px;
}
.fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.75s ease-out;
}

.fade-in.active {
   opacity: 1;
   transform: translateY(0);
}
.text-rotation-container {
   position: relative;
   height: 7.5rem;
   overflow: hidden;
   text-align: center;
}

.rotating-text {
   position: absolute;
   width: 100%;
   font-size: 4.5rem;
   font-weight: bold;
   transform: translateY(0);
   transition:
      transform 0.5s ease-in-out,
      opacity 0.5s ease-in-out;
   opacity: 1;
   font-family: 'Pretendard', sans-serif;
}

.stats-section {
   padding: 3rem 1rem;
   background: #f8f9fa;
}

.stats-section h1 {
   text-align: center;
   margin: 0 0 2rem;
}
.stats-card {
   background-color: #fff;
   border-radius: 15px;
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
   margin: 1rem;
   min-height: 200px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.stats-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.stats-title {
   margin-bottom: 1.5rem;
   font-size: 1.25rem;
   color: #333;
}

.stats-counter-container {
   display: flex;
   align-items: center;
   justify-content: center;
}

.stats-counter-value {
   font-size: 3rem;
   color: #2a52be;
   margin: 0;
   display: inline-block;
}

.stats-unit {
   font-size: 1.5rem;
   color: #2a52be;
   margin-left: 0.5rem;
   display: inline-block;
   opacity: 0;
   transform: translateY(20px);
   transition:
      opacity 0.5s ease,
      transform 0.5s ease;
}

.stats-unit.visible {
   opacity: 1;
   transform: translateY(0);
}

/* 이점 */
/* Benefits Section Styles */
.benefits-section {
   padding: 80px 0;
   background-color: #fff;
}

.benefit-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-title {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: #333;
}

.section-subtitle {
   font-size: 1.2rem;
   color: #666;
}

.benefit-card {
   background: #fff;
   border-radius: 16px;
   padding: 32px;
   margin-bottom: 24px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.benefit-card:hover {
   transform: translateY(-4px);
}

.card-header {
   display: flex;
   align-items: center;
   margin-bottom: 24px;
}

.emoji {
   font-size: 2rem;
   margin-right: 16px;
}

.card-header h3 {
   font-size: 1.5rem;
   font-weight: 600;
   color: #333;
}

/* 비용 비교 스타일 */
.comparison-wrapper {
   padding: 24px 0;
}

.comparison-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 16px;
   margin-bottom: 12px;
   background: #f8f9fa;
   border-radius: 8px;
}

.comparison-item.highlight {
   background: #2a52be;
   color: white;
}

.saving-amount {
   text-align: center;
   font-size: 1.5rem;
   font-weight: 700;
   color: #2a52be;
   margin-top: 24px;
   padding: 16px;
   background: #f0f4ff;
   border-radius: 8px;
}

/* 시간 절감 그리드 */
.time-benefits-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 24px;
   margin-bottom: 24px;
}

.time-card {
   text-align: center;
}

.time-comparison {
   margin-top: 24px;
}

.time-comparison .before,
.time-comparison .after {
   padding: 12px;
   margin-bottom: 8px;
}

.time-comparison .label {
   display: block;
   color: #666;
   margin-bottom: 8px;
}

.time-comparison .value {
   font-size: 1.25rem;
   font-weight: 600;
}

.time-comparison .value.highlight {
   color: #2a52be;
   font-weight: 700;
}

/* 단건 작업 카드 */
.minimal-card {
   background: #f0f4ff;
   text-align: center;
}

.minimal-description {
   font-size: 1.2rem;
   line-height: 1.6;
   color: #333;
}

.minimal-description strong {
   color: #2a52be;
   font-weight: 700;
}

/* 반응형 조정 */
@media (max-width: 768px) {
   .section-title {
      font-size: 2rem;
   }

   .benefit-card {
      padding: 24px;
   }

   .time-benefits-grid {
      grid-template-columns: 1fr;
   }
}

/* Services Section Styles */
.services-section {
   padding: 0 0 80px;
   background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.services-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-title {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: #333;
}

.section-subtitle {
   font-size: 1.2rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
   gap: 24px;
   padding: 0 20px;
}

.service-card {
   background: #fff;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s ease;
   border: 1px solid #eee;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   cursor: pointer;
}

.service-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-header {
   display: flex;
   align-items: center;
   margin-bottom: 24px;
}

.icon-wrapper {
   width: 48px;
   height: 48px;
   background: #f0f4ff;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 16px;
}

.icon-wrapper i {
   font-size: 24px;
   color: #2a52be;
}

.card-header h3 {
   font-size: 1.25rem;
   font-weight: 600;
   color: #333;
   margin: 0;
}

.card-content {
   flex-grow: 1;
}

.card-content p {
   color: #666;
   margin-bottom: 16px;
   line-height: 1.5;
}

.feature-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.feature-list li {
   color: #444;
   margin-bottom: 8px;
   padding-left: 24px;
   position: relative;
}

.feature-list li::before {
   content: '•';
   color: #2a52be;
   position: absolute;
   left: 8px;
}

.card-footer {
   margin-top: 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 16px;
   border-top: 1px solid #eee;
}

.learn-more {
   color: #2a52be;
   font-weight: 600;
}

.card-footer i {
   color: #2a52be;
   transition: transform 0.2s ease;
}

.service-card:hover .card-footer i {
   transform: translateX(4px);
}

/* 반응형 조정 */
@media (max-width: 768px) {
   .services-section {
      padding: 60px 0;
   }

   .section-title {
      font-size: 2rem;
   }

   .services-grid {
      grid-template-columns: 1fr;
      padding: 0 16px;
   }

   .service-card {
      padding: 24px;
   }
}

/* main review */
/* Review Section Styles */
.review-section {
   padding: 80px 0;
   background-color: #fafafa;
}

.review-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-title {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: #333;
}

.section-subtitle {
   font-size: 1.2rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.review-list {
   max-width: 1300px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
}

.review-pair {
   display: contents;
}

.review-card {
   width: 100%;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   opacity: 0;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   will-change: transform, opacity;
   transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* 왼쪽 카드 초기 상태와 애니메이션 */
.review-card:nth-child(odd) {
   transform: translateX(-30px);
}

/* 오른쪽 카드 초기 상태와 애니메이션 */
.review-card:nth-child(even) {
   transform: translateX(30px);
}

.review-card.visible {
   opacity: 1;
   transform: translateX(0);
}

.review-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.review-content {
   position: relative;
   width: 100%;
   height: auto;
}

.review-image-container {
   width: 100%;
   position: relative;
   overflow: hidden;
}

.review-image {
   width: 100%;
   height: 100%;
   object-fit: contain;
   display: block;
}

/* Loading Spinner */
.loading-spinner {
   display: flex;
   justify-content: center;
   padding: 40px 0;
   grid-column: 1 / -1;
}

.spinner {
   width: 40px;
   height: 40px;
   border: 3px solid #f3f3f3;
   border-top: 3px solid #2a52be;
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

/* 반응형 조정 */
@media (max-width: 768px) {
   .review-section {
      padding: 60px 0 0;
   }

   .section-title {
      font-size: 2rem;
   }

   .review-list {
      grid-template-columns: 1fr;
      padding: 0;
   }

   .review-card:nth-child(odd),
   .review-card:nth-child(even) {
      transform: translateY(30px);
   }

   .review-card.visible {
      transform: translateY(0);
   }
}

/* 유지보수 업체 */
.partners-page-wrapper {
   min-height: 100vh;
}

.partners-container {
   max-width: 1400px;
   margin: 0 auto;
   margin-top: 40px;
}

/* 쇼케이스 섹션 */
.partners-showcase-section {
   background: #ffffff;
   padding: 64px 0 32px;
   border-bottom: 1px solid #e9ecef;
}

.partners-showcase-header {
   text-align: center;
   margin-bottom: 48px;
}

.partners-showcase-title {
   font-size: 32px;
   font-weight: 700;
   color: #191f28;
   margin-bottom: 16px;
}

.partners-showcase-description {
   font-size: 18px;
   color: #6b7684;
   line-height: 1.6;
   max-width: 640px;
   margin: 0 auto;
}

/* 파트너 그리드 */
.partners-grid-section {
   background: #ffffff;
   padding: 32px 0 80px;
}

.partners-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
   gap: 24px;
   margin-bottom: 48px;
}

.partners-logo-card {
   background: #ffffff;
   border: 1px solid #f1f3f4;
   border-radius: 16px;
   padding: 32px 24px;
   text-align: center;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
   position: relative;
   overflow: hidden;
}

.partners-logo-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(49, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
   opacity: 0;
   transition: opacity 0.3s ease;
}

.partners-logo-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   border-color: #e2e8f0;
}

.partners-logo-card:hover::before {
   opacity: 1;
}

.partners-logo-wrapper {
   position: relative;
   z-index: 1;
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 16px;
}

.partners-logo-img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   filter: grayscale(100%) brightness(0.8) contrast(1.2);
   transition: all 0.3s ease;
}

.partners-logo-card:hover .partners-logo-img {
   filter: grayscale(0%) brightness(1) contrast(1);
   transform: scale(1.05);
}

.partners-logo-fallback {
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, #f1f3f4, #e2e8f0);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #9ca3af;
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.partners-logo-number {
   position: relative;
   z-index: 1;
   font-size: 13px;
   color: #9ca3af;
   font-weight: 500;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.partners-logo-card:hover .partners-logo-number {
   opacity: 1;
}

/* 로드 더 버튼 */
.partners-load-more {
   text-align: center;
}

.partners-load-more-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 16px 32px;
   background: #f8f9fa;
   color: #6b7684;
   border: 1px solid #e9ecef;
   border-radius: 12px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s ease;
}

.partners-load-more-btn:hover {
   background: #3182f6;
   color: #ffffff;
   border-color: #3182f6;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(49, 130, 246, 0.3);
}

/* 신뢰성 섹션 */
.partners-trust-section {
   background: linear-gradient(135deg, #f8fafc, #f1f5f9);
   padding: 120px 0;
}

.partners-trust-content {
   text-align: center;
}

.partners-trust-title {
   font-size: 36px;
   font-weight: 800;
   color: #191f28;
   margin-bottom: 24px;
}

.partners-trust-description {
   font-size: 18px;
   color: #6b7684;
   line-height: 1.7;
   margin-bottom: 64px;
}

.partners-trust-features {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 48px;
}

.partners-trust-feature {
   text-align: center;
}

.partners-trust-feature-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #3182f6, #6366f1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   margin: 0 auto 24px;
}

.partners-trust-feature h3 {
   font-size: 20px;
   font-weight: 700;
   color: #191f28;
   margin-bottom: 12px;
}

.partners-trust-feature p {
   font-size: 16px;
   color: #6b7684;
   line-height: 1.6;
}

/* CTA 섹션 */
.partners-cta-section {
   background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.9)), url('//ecimg.cafe24img.com/pg425b52209933077/happyinsider/img/ownerflow_main.png');
   background-size: cover;
   background-position: 70% center; /* 오른쪽으로 이동 */
   background-repeat: no-repeat;
   background-attachment: fixed;
   color: #ffffff;
   padding: 150px 0;
   text-align: center;
   position: relative;
   overflow: hidden;
}

/* 추가적인 오버레이 효과 (선택사항) */
.partners-cta-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
   z-index: -1;
}

.partners-cta-title {
   font-size: 36px;
   font-weight: 800;
   margin-bottom: 24px;
}

.partners-cta-description {
   font-size: 18px;
   opacity: 0.9;
   line-height: 1.7;
   margin-bottom: 48px;
}

.partners-cta-buttons {
   display: flex;
   justify-content: center;
   gap: 16px;
   flex-wrap: wrap;
}

.partners-cta-primary,
.partners-cta-secondary {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 18px 32px;
   border-radius: 12px;
   font-size: 16px;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
}

.partners-cta-primary {
   background: #3182f6;
   color: #ffffff;
}

.partners-cta-primary:hover {
   background: #2563eb;
   transform: translateY(-2px);
   box-shadow: 0 12px 30px rgba(49, 130, 246, 0.4);
}

.partners-cta-secondary {
   background: rgba(255, 255, 255, 0.1);
   color: #ffffff;
   border: 1px solid rgba(255, 255, 255, 0.3);
}

.partners-cta-secondary:hover {
   background: rgba(255, 255, 255, 0.2);
   border-color: rgba(255, 255, 255, 0.5);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
   .partners-hero-section {
      padding: 80px 0;
   }

   .partners-hero-logo-title {
      gap: 24px;
   }

   .partners-ownerflow-logo {
      height: 70px;
   }

   .partners-hero-title {
      font-size: 32px;
   }

   .partners-hero-stats {
      gap: 32px;
   }

   .partners-showcase-section {
      padding: 50px 0 32px;
   }

   .partners-showcase-title {
      font-size: 28px;
   }
}

@media (max-width: 768px) {
   .partners-hero-section {
      padding: 60px 0;
   }

   .partners-hero-logo-title {
      flex-direction: column;
      gap: 20px;
   }

   .partners-ownerflow-logo {
      height: 60px;
   }

   .partners-hero-title {
      font-size: 24px;
      text-align: center;
   }

   .partners-hero-stats {
      gap: 24px;
   }

   .partners-stat-number {
      font-size: 24px;
   }

   .partners-showcase-section {
      padding: 40px 0 24px;
   }

   .partners-showcase-title {
      font-size: 24px;
   }

   .partners-showcase-description {
      font-size: 16px;
   }

   .partners-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
   }
   .partners-container {
      padding: 0 20px;
   }

   .partners-logo-card {
      padding: 24px 16px;
   }

   .partners-logo-wrapper {
      height: 60px;
      margin-bottom: 12px;
   }

   .partners-trust-section,
   .partners-cta-section {
      padding: 80px 0;
   }

   .partners-trust-title,
   .partners-cta-title {
      font-size: 28px;
   }

   .partners-trust-features {
      gap: 32px;
   }

   .partners-cta-buttons {
      flex-direction: column;
      align-items: center;
   }

   .partners-cta-primary,
   .partners-cta-secondary {
      width: 100%;
      max-width: 300px;
      justify-content: center;
   }
}

/* 애니메이션 */
.partners-logo-card {
   animation: partnersCardFadeIn 0.6s ease-out both;
}

@keyframes partnersCardFadeIn {
   from {
      opacity: 0;
      transform: translateY(30px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* 스타거드 애니메이션 */
.partners-logo-card:nth-child(1) {
   animation-delay: 0.1s;
}
.partners-logo-card:nth-child(2) {
   animation-delay: 0.15s;
}
.partners-logo-card:nth-child(3) {
   animation-delay: 0.2s;
}
.partners-logo-card:nth-child(4) {
   animation-delay: 0.25s;
}
.partners-logo-card:nth-child(5) {
   animation-delay: 0.3s;
}
.partners-logo-card:nth-child(6) {
   animation-delay: 0.35s;
}
.partners-logo-card:nth-child(7) {
   animation-delay: 0.4s;
}
.partners-logo-card:nth-child(8) {
   animation-delay: 0.45s;
}
.partners-logo-card:nth-child(9) {
   animation-delay: 0.5s;
}
.partners-logo-card:nth-child(10) {
   animation-delay: 0.55s;
}
.partners-logo-card:nth-child(11) {
   animation-delay: 0.6s;
}
.partners-logo-card:nth-child(12) {
   animation-delay: 0.65s;
}

/* test main first section*/
.ownerflow-modern-hero {
   min-height: 92vh;
   background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
   position: relative;
   display: flex;
   align-items: center;
   padding: 80px 0;
}

.ownerflow-hero-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 24px;
   width: 100%;
}

.ownerflow-hero-main-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
   margin-bottom: 120px;
}

/* 텍스트 섹션 */
.ownerflow-hero-text-section {
   max-width: 600px;
}

.ownerflow-hero-badge {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(99, 102, 241, 0.08);
   backdrop-filter: blur(10px);
   color: #4338ca;
   padding: 10px 18px;
   border-radius: 24px;
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 28px;
   border: 1px solid rgba(99, 102, 241, 0.15);
}

.ownerflow-badge-pulse {
   position: absolute;
   left: 12px;
   top: 50%;
   transform: translateY(-50%);
   width: 8px;
   height: 8px;
   background: #4338ca;
   border-radius: 50%;
   animation: ownerflowBadgePulse 2s ease-in-out infinite;
}

@keyframes ownerflowBadgePulse {
   0%,
   100% {
      opacity: 1;
      transform: translateY(-50%) scale(1);
   }
   50% {
      opacity: 0.5;
      transform: translateY(-50%) scale(0.9);
   }
}

.ownerflow-hero-title {
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-weight: 800;
   line-height: 1.15;
   color: #0f172a;
   margin-bottom: 28px;
}

.ownerflow-hero-highlight {
   position: relative;
   display: inline-block;
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.ownerflow-title-underline {
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 100%;
   height: 12px;
   stroke: #667eea;
   opacity: 0.3;
}

.ownerflow-hero-description {
   font-size: 1.2rem;
   color: #64748b;
   line-height: 1.8;
   margin-bottom: 36px;
}

.ownerflow-hero-description strong {
   color: #334155;
   font-weight: 700;
}

/* 신뢰 지표 */
.ownerflow-trust-indicators {
   display: flex;
   gap: 24px;
   margin-bottom: 40px;
   flex-wrap: wrap;
}

.ownerflow-trust-item {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.95rem;
   color: #64748b;
}

.ownerflow-trust-item svg {
   color: #fbbf24;
   flex-shrink: 0;
}

.ownerflow-trust-item strong {
   color: #334155;
   font-weight: 700;
}

/* CTA 버튼 */
.ownerflow-hero-cta-section {
   display: flex;
   gap: 16px;
   align-items: center;
   flex-wrap: wrap;
}

.ownerflow-hero-btn-primary {
   background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
   padding: 16px 32px;
   border-radius: 12px;
   font-size: 16px;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
}

.ownerflow-hero-btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.ownerflow-hero-btn-secondary {
   color: #4338ca;
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 16px 24px;
   border-radius: 12px;
   background: rgba(99, 102, 241, 0.05);
   border: 1px solid rgba(99, 102, 241, 0.15);
   transition: all 0.3s ease;
}

.ownerflow-hero-btn-secondary:hover {
   background: rgba(99, 102, 241, 0.1);
   gap: 12px;
}

/* 비주얼 섹션 - 대시보드 */
.ownerflow-hero-visual-section {
   position: relative;
}

.ownerflow-dashboard-card {
   background: white;
   border-radius: 20px;
   padding: 32px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
   border: 1px solid #f1f5f9;
   position: relative;
   overflow: hidden;
}

.ownerflow-dashboard-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.ownerflow-dashboard-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 28px;
}

.ownerflow-dashboard-title-group {
   display: flex;
   align-items: center;
   gap: 12px;
}

.ownerflow-dashboard-icon {
   width: 44px;
   height: 44px;
   border-radius: 10px;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
   display: flex;
   align-items: center;
   justify-content: center;
}

.ownerflow-dashboard-icon svg {
   color: #667eea;
}

.ownerflow-dashboard-title {
   font-size: 1.15rem;
   font-weight: 700;
   color: #0f172a;
   line-height: 1;
   margin-bottom: 4px;
}

.ownerflow-dashboard-subtitle {
   font-size: 0.8rem;
   color: #94a3b8;
   font-weight: 500;
}

.ownerflow-status-indicator {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   background: rgba(16, 185, 129, 0.1);
   border-radius: 20px;
}

.ownerflow-status-dot-pulse {
   width: 8px;
   height: 8px;
   background: #10b981;
   border-radius: 50%;
   position: relative;
   animation: ownerflowStatusPulse 2s ease-in-out infinite;
}

.ownerflow-status-dot-pulse::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #10b981;
   border-radius: 50%;
   animation: ownerflowStatusRipple 2s ease-in-out infinite;
}

@keyframes ownerflowStatusPulse {
   0%,
   100% {
      opacity: 1;
   }
   50% {
      opacity: 0.5;
   }
}

@keyframes ownerflowStatusRipple {
   0% {
      transform: scale(1);
      opacity: 0.5;
   }
   100% {
      transform: scale(2.5);
      opacity: 0;
   }
}

.ownerflow-status-indicator span {
   font-size: 0.8rem;
   color: #10b981;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

/* 주간 통계 */
.ownerflow-weekly-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-bottom: 28px;
}

.ownerflow-stat-mini {
   background: linear-gradient(135deg, #f8fafc, #f1f5f9);
   padding: 16px;
   border-radius: 12px;
   border: 1px solid #e2e8f0;
}

.ownerflow-stat-label {
   font-size: 0.75rem;
   color: #64748b;
   margin-bottom: 8px;
   font-weight: 500;
}

.ownerflow-stat-value {
   font-size: 1.5rem;
   font-weight: 800;
   color: #0f172a;
   margin-bottom: 4px;
}

.ownerflow-stat-value .counter {
   font-variant-numeric: tabular-nums;
}

.ownerflow-stat-trend {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   font-size: 0.75rem;
   font-weight: 600;
}

.ownerflow-stat-trend.up {
   color: #10b981;
}

.ownerflow-stat-trend.down {
   color: #ef4444;
}

/* 최근 작업 */
.ownerflow-recent-works {
   margin-top: 24px;
}

.ownerflow-works-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 16px;
   padding-bottom: 12px;
   border-bottom: 2px solid #f1f5f9;
}

.ownerflow-works-header > span:first-child {
   font-size: 0.9rem;
   font-weight: 700;
   color: #0f172a;
}

.ownerflow-works-live {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 0.75rem;
   color: #64748b;
   font-weight: 500;
}

.ownerflow-live-dot {
   width: 6px;
   height: 6px;
   background: #10b981;
   border-radius: 50%;
   animation: ownerflowPulse 2s infinite;
}

.ownerflow-work-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.ownerflow-work-item-new {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px;
   border-radius: 10px;
   background: #fafbfc;
   border: 1px solid #f1f5f9;
   transition: all 0.3s ease;
}

.ownerflow-work-item-new:hover {
   background: #f8fafc;
   border-color: #e2e8f0;
}

.ownerflow-work-icon {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.ownerflow-work-icon.completed {
   background: #dcfce7;
   color: #166534;
}

.ownerflow-work-icon.inprogress {
   background: #fef3c7;
   color: #92400e;
}

.ownerflow-work-icon.scheduled {
   background: #e0e7ff;
   color: #4338ca;
}

.ownerflow-work-content {
   flex: 1;
   min-width: 0;
}

.ownerflow-work-title-new {
   font-size: 0.9rem;
   font-weight: 600;
   color: #0f172a;
   margin-bottom: 4px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.ownerflow-work-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 0.75rem;
   color: #64748b;
}

.ownerflow-work-client {
   font-weight: 500;
}

.ownerflow-work-time,
.ownerflow-work-progress {
   color: #94a3b8;
}

.ownerflow-work-badge {
   padding: 4px 10px;
   border-radius: 6px;
   font-size: 0.7rem;
   font-weight: 600;
   white-space: nowrap;
}

.ownerflow-work-badge.completed {
   background: #dcfce7;
   color: #166534;
}

.ownerflow-work-badge.inprogress {
   background: #fef3c7;
   color: #92400e;
}

.ownerflow-work-badge.scheduled {
   background: #e0e7ff;
   color: #4338ca;
}

/* 플로팅 카드 */
.ownerflow-floating-card {
   position: absolute;
   background: white;
   border-radius: 12px;
   padding: 16px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border: 1px solid #f1f5f9;
   animation: ownerflowFloatCard 4s ease-in-out infinite;
}

.ownerflow-floating-card.card-1 {
   top: 10%;
   right: -20px;
   animation-delay: 0s;
}

.ownerflow-floating-card.card-2 {
   bottom: 20%;
   left: -20px;
   animation-delay: 2s;
}

.ownerflow-floating-card-content {
   display: flex;
   align-items: center;
   gap: 12px;
}

.ownerflow-floating-card-icon {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
}

.ownerflow-floating-card-icon.success {
   background: #dcfce7;
   color: #166534;
}

.ownerflow-floating-card-icon.speed {
   background: #fef3c7;
   color: #92400e;
}

.ownerflow-floating-card-text {
   font-size: 0.8rem;
   font-weight: 600;
   color: #0f172a;
}

@keyframes ownerflowFloatCard {
   0%,
   100% {
      transform: translateY(0px) rotate(0deg);
   }
   50% {
      transform: translateY(-15px) rotate(2deg);
   }
}

/* 하단 서비스 퀵링크 */
.ownerflow-hero-bottom-section {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 24px;
   margin-top: 80px;
}

.ownerflow-service-quick-card {
   background: white;
   border-radius: 16px;
   padding: 28px;
   border: 1px solid #f1f5f9;
   display: flex;
   align-items: center;
   gap: 20px;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
}

.ownerflow-service-quick-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 4px;
   height: 100%;
   background: linear-gradient(180deg, #667eea, #764ba2);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.ownerflow-service-quick-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   border-color: #e2e8f0;
}

.ownerflow-service-quick-card:hover::before {
   opacity: 1;
}

.ownerflow-service-quick-icon {
   width: 56px;
   height: 56px;
   border-radius: 14px;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: all 0.3s ease;
}

.ownerflow-service-quick-card:hover .ownerflow-service-quick-icon {
   background: linear-gradient(135deg, #667eea, #764ba2);
}

.ownerflow-service-quick-icon svg {
   color: #667eea;
   transition: all 0.3s ease;
}

.ownerflow-service-quick-card:hover .ownerflow-service-quick-icon svg {
   color: white;
}

.ownerflow-service-quick-content {
   flex: 1;
}

.ownerflow-service-quick-title {
   font-size: 1.1rem;
   font-weight: 700;
   color: #0f172a;
   margin-bottom: 4px;
}

.ownerflow-service-quick-desc {
   font-size: 0.85rem;
   color: #64748b;
}

.ownerflow-service-quick-arrow {
   flex-shrink: 0;
   opacity: 0.4;
   transition: all 0.3s ease;
}

.ownerflow-service-quick-arrow svg {
   color: #667eea;
}

.ownerflow-service-quick-card:hover .ownerflow-service-quick-arrow {
   opacity: 1;
   transform: translateX(4px);
}

/* 애니메이션 */
@keyframes ownerflowPulse {
   0%,
   100% {
      opacity: 1;
   }
   50% {
      opacity: 0.5;
   }
}

/* 마우스 커서 효과 */
.ownerflow-cursor-dot {
   width: 8px;
   height: 8px;
   background: #667eea;
   border-radius: 50%;
   position: fixed;
   pointer-events: none;
   z-index: 9999;
   transition: transform 0.1s ease;
   opacity: 0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
   .ownerflow-hero-main-content {
      grid-template-columns: 1fr;
      gap: 60px;
   }

   .ownerflow-hero-text-section {
      max-width: none;
      text-align: center;
   }

   .ownerflow-trust-indicators {
      justify-content: center;
   }

   .ownerflow-hero-cta-section {
      justify-content: center;
   }

   .ownerflow-floating-card.card-1 {
      top: auto;
      bottom: -20px;
      right: 20px;
   }

   .ownerflow-floating-card.card-2 {
      bottom: auto;
      top: -20px;
      left: 20px;
   }

   .ownerflow-weekly-stats {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .ownerflow-modern-hero {
      padding: 40px 0;
   }

   .ownerflow-hero-container {
      padding: 0 16px;
   }

   .ownerflow-hero-main-content {
      margin-bottom: 60px;
      gap: 40px;
   }

   .ownerflow-hero-title {
      font-size: 2rem;
   }

   .ownerflow-hero-description {
      font-size: 1rem;
   }

   .ownerflow-trust-indicators {
      flex-direction: column;
      gap: 12px;
      align-items: center;
   }

   .ownerflow-hero-cta-section {
      flex-direction: column;
      width: 100%;
   }

   .ownerflow-hero-btn-primary,
   .ownerflow-hero-btn-secondary {
      width: 100%;
      justify-content: center;
   }

   .ownerflow-dashboard-card {
      padding: 20px;
   }

   .ownerflow-dashboard-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
   }

   .ownerflow-weekly-stats {
      gap: 12px;
   }

   .ownerflow-stat-mini {
      padding: 12px;
   }

   .ownerflow-floating-card {
      display: none;
   }

   .ownerflow-hero-bottom-section {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 60px;
   }

   .ownerflow-service-quick-card {
      padding: 20px;
   }

   .ownerflow-service-quick-icon {
      width: 48px;
      height: 48px;
   }
}

@media (max-width: 480px) {
   .ownerflow-hero-badge {
      font-size: 12px;
      padding: 8px 14px;
   }

   .ownerflow-work-item-new {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
   }

   .ownerflow-work-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
   }

   .ownerflow-work-badge {
      align-self: flex-end;
   }
}

/* Final CTA Section */
.ownerflow-final-cta-section {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 100px 0;
   position: relative;
   overflow: hidden;
}

.ownerflow-cta-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
   position: relative;
   z-index: 2;
}

.ownerflow-cta-content-wrapper {
   text-align: center;
   position: relative;
}

.ownerflow-cta-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(10px);
   color: white;
   padding: 8px 16px;
   border-radius: 20px;
   font-size: 13px;
   font-weight: 600;
   margin-bottom: 24px;
   border: 1px solid rgba(255, 255, 255, 0.3);
}

.ownerflow-cta-badge svg {
   animation: ownerflowCtaPulse 2s ease-in-out infinite;
}

@keyframes ownerflowCtaPulse {
   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }
   50% {
      transform: scale(1.1);
      opacity: 0.8;
   }
}

.ownerflow-cta-title {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   color: white;
   line-height: 1.2;
   margin-bottom: 24px;
}

.ownerflow-cta-highlight {
   display: inline-block;
   background: linear-gradient(90deg, #ffffff, #f0f0f0);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   position: relative;
}

.ownerflow-cta-description {
   font-size: 1.15rem;
   color: rgba(255, 255, 255, 0.9);
   line-height: 1.7;
   margin-bottom: 40px;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.ownerflow-cta-buttons-group {
   display: flex;
   gap: 16px;
   justify-content: center;
   margin-bottom: 48px;
   flex-wrap: wrap;
}

.ownerflow-cta-btn-primary,
.ownerflow-cta-btn-secondary {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 18px 36px;
   border-radius: 12px;
   font-size: 16px;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   text-decoration: none;
}

.ownerflow-cta-btn-primary {
   background: white;
   color: #667eea;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ownerflow-cta-btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
   background: #ffffff;
}

.ownerflow-cta-btn-secondary {
   background: rgba(255, 255, 255, 0.15);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.3);
   backdrop-filter: blur(10px);
}

.ownerflow-cta-btn-secondary:hover {
   background: rgba(255, 255, 255, 0.25);
   border-color: rgba(255, 255, 255, 0.5);
   transform: translateY(-3px);
}

.ownerflow-cta-features {
   display: flex;
   gap: 32px;
   justify-content: center;
   flex-wrap: wrap;
}

.ownerflow-cta-feature-item {
   display: flex;
   align-items: center;
   gap: 8px;
   color: white;
   font-size: 0.95rem;
   font-weight: 500;
}

.ownerflow-cta-feature-item svg {
   color: #fbbf24;
   flex-shrink: 0;
}

/* 장식 요소 */
.ownerflow-cta-decoration {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 1;
}

.ownerflow-cta-circle {
   position: absolute;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
   opacity: 0.3;
}

.ownerflow-cta-circle.circle-1 {
   width: 400px;
   height: 400px;
   top: -100px;
   right: -100px;
   animation: ownerflowCtaFloat1 20s ease-in-out infinite;
}

.ownerflow-cta-circle.circle-2 {
   width: 300px;
   height: 300px;
   bottom: -80px;
   left: -80px;
   animation: ownerflowCtaFloat2 15s ease-in-out infinite;
}

.ownerflow-cta-circle.circle-3 {
   width: 200px;
   height: 200px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation: ownerflowCtaFloat3 18s ease-in-out infinite;
}

@keyframes ownerflowCtaFloat1 {
   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }
   50% {
      transform: translate(-30px, 30px) scale(1.1);
   }
}

@keyframes ownerflowCtaFloat2 {
   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }
   50% {
      transform: translate(30px, -30px) scale(1.15);
   }
}

@keyframes ownerflowCtaFloat3 {
   0%,
   100% {
      transform: translate(-50%, -50%) scale(1);
   }
   50% {
      transform: translate(-50%, -50%) scale(1.2);
   }
}

/* 반응형 */
@media (max-width: 768px) {
   .ownerflow-final-cta-section {
      padding: 60px 0;
   }

   .ownerflow-cta-container {
      padding: 0 16px;
   }

   .ownerflow-cta-title {
      font-size: 1.75rem;
   }

   .ownerflow-cta-description {
      font-size: 1rem;
   }

   .ownerflow-cta-buttons-group {
      flex-direction: column;
      gap: 12px;
   }

   .ownerflow-cta-btn-primary,
   .ownerflow-cta-btn-secondary {
      width: 100%;
      max-width: 320px;
      justify-content: center;
   }

   .ownerflow-cta-features {
      flex-direction: column;
      gap: 16px;
      align-items: center;
   }

   .ownerflow-cta-circle {
      display: none;
   }
}

@media (max-width: 480px) {
   .ownerflow-cta-badge {
      font-size: 12px;
      padding: 6px 12px;
   }

   .ownerflow-cta-title {
      font-size: 1.5rem;
   }

   .ownerflow-cta-description {
      font-size: 0.9rem;
   }

   .ownerflow-cta-btn-primary,
   .ownerflow-cta-btn-secondary {
      padding: 14px 28px;
      font-size: 15px;
   }
}
