* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #9333ea;
    --secondary-purple: #7c3aed;
    --light-purple: #a78bfa;
    --dark-purple: #6b21a8;
    --very-light-purple: #c4b5fd;
    --accent-purple: #d8b4fe;
    --dark-navy: #0f172a;
    --medium-navy: #1e293b;
    --light-navy: #334155;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}


/* Page Header - 퍼플 테마 */
.page-header {
    padding: 1.3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    background: linear-gradient(135deg, #d8b4fe 0%, #9333ea 80%);
    box-shadow: 0 4px 25px rgba(147, 51, 234, 0.4);
    border-radius: 15px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header h1,
.page-header h4 {
    font-size: 3.0rem;
    margin-bottom: 0.97rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
    color: #2d1b4e;
    font-weight: 700;
}

/* Main Content */
.yesmap-main {
    padding: 2.5rem 2rem;
    background: var(--medium-navy);
    margin-top: -8px;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5.5rem;
}

.about-text {
    text-align: center;
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--light-purple);
    background-clip: text;
    text-align: center;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-text strong {
    color: var(--light-purple);
    font-weight: 500;
}


/* Service Card - 퍼플 테마 */
.service-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 2.0rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.4));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #94a3b8;
    font-size: 1.05rem;
}

.service-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* 기존 service-content 그대로 유지 */
.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 기존 service-text 그대로 유지 */
.service-text {
  flex: 1 1 50%;
  text-align: left;
}

/* ✅ 이미지 영역 수정 */
.service-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.0rem;
  flex-wrap: wrap;
  text-align: center;
    
    
    
    
}

/* 각각의 이미지 박스 */
.image-box {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
    
}

/* 캡션 스타일 */
.caption {
  font-size: 1rem;
  font-weight: 400;
  color: #ffd95c;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

/* 이미지 스타일 */
.image-box img {
  width: 100%;
  height: 280px;             /* ✅ 원하는 고정 높이 지정 */
  
  border-radius: 12px;
  box-shadow: 0 5px 35px rgba(255, 217, 92, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.image-box img:hover {
  transform: scale(1.03);
  
}

/* Feature Grid - 4개 카드 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(107, 33, 168, 0.05) 100%);
    border-radius: 16px;
    padding: 2.5rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
}

.feature-card .icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.4));
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f3fcc6;
    position: relative;
    z-index: 1;
}
.feature-card h4 {
    color: #cbd5e1;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
}
.feature-card p {
    color: var(--light-purple);
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
}

.feature-card .service-desc {
    color: var(--light-purple);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: -0.8rem;
}

.feature-card ul {
    list-style: none;
    padding: 0.8rem 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.feature-card li {
    color: #cbd5e1;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Grid - 활용 사례용 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Case Image Container */
.case-image-container {
    background: rgba(147, 51, 234, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.case-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
}

.case-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.case-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.4);
}

.image-caption {
    margin-top: 1.5rem;
    color: var(--light-purple);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Testimonial Box */
.testimonial-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(107, 33, 168, 0.05) 100%);
    border-radius: 16px;
    padding: 3rem;
    border-left: 4px solid var(--primary-purple);
    position: relative;
    overflow: hidden;
}

.testimonial-box::before {
    content: '❝';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(147, 51, 234, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #cbd5e1;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--light-purple);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 1rem;
}

/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recommend-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(107, 33, 168, 0.03) 100%);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.recommend-card h3 {
    color: var(--light-purple);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.recommend-card p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Process Flow */
/* == process ========================  */

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 173, 187, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    max-width: 250px;
    flex: 0 0 200px; /* 고정폭 (항상 같은 크기 유지) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    box-sizing: border-box;
}


            /* 타임라인 번호 스타일 */
.timeline-number {
     width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}


.timeline-item h4 {
    color: var(--light-purple);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.timeline-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-arrow {
    font-size: 1.5rem;
    color: #c133c1;
    align-self: center;
    font-weight: 100;
    padding: 0 0.5rem;
}


/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem auto;
    margin-bottom: -2rem;
    max-width: 1167px;
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


/* Impact Banner - 퍼플 테마 */
.impact-banner {
    background: linear-gradient(135deg, rgb(168, 85, 247) 0%, rgba(88, 28, 135, 0.8) 100%);
    border: 3px solid var(--light-purple);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 50rem;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.5;
}

.impact-banner h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-purple {
    color: #fde68a;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(253, 230, 138, 0.6);
}

.impact-banner p {
    font-size: 1.3rem;
    color: #e9d5ff;
    line-height: 1.8;
}

/* Blank Line */
.blank-line {
    width: 100%;
}


.testimonial-text {
    color: #e2e8f0;
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
}

/* 💛 노랑계열 강조 텍스트 */
.highlight {
    background: linear-gradient(135deg, #fff3b0, #ffd95c);
    -webkit-background-clip: text;
    background-clip: text; /* 표준 속성 추가 */
    -webkit-text-fill-color: transparent;
    color: transparent; /* 표준 속성 추가 */
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 180, 0.4);
}


/* 트렌드맵 그리드 스타일 */
.trend-grid-container {
  width: 100%;
  margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.trend-item {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(100, 149, 237, 0.3); /* 흐림 효과가 있는 외곽 그림자 */
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1)); /* 추가 흐림 효과 */
}

.trend-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(142, 55, 0, 0.67);
  color: white;
  padding: 3px 5px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.trend-item img {
  width: 100%;
  height: auto; /* 추가 */
  display: block; /* 추가 - 이미지 하단 여백 제거 */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trend-item:hover img {
  transform: scale(1.05);
}

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #bbb;
}

.modal-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
}

.modal-content {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  animation: zoomIn 0.3s;
  border-radius: 8px;
}

.modal-caption {
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}


/* Hero 버튼 컨테이너 */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* 기본 버튼 스타일 */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
}

/* 주요 버튼 (지도형 홈페이지 만들기) */
.hero-btn-primary {
    background: linear-gradient(135deg, #552e00 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 153, 140, 0.4);
    border: none;
    height: 40px;
    min-width: 300px;
    margin-left: 10px;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}




/* Responsive Design */
@media (max-width: 768px) {
    
    /* Page Header */
    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header h1,
    .page-header h4 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Content */
    .about-text h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

   

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }


    .contact-email h2 {
        font-size: 1.8rem;
    }

    .contact-email p {
        font-size: 1.1rem;
    }

    .testimonial-box {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    /* Impact Banner */
    .impact-banner {
        padding: 2rem 1.5rem;
    }

    .impact-banner h1 {
        font-size: 2rem;
    }

    .impact-banner p {
        font-size: 1.1rem;
    }
      .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-text {
    text-align: center;
  }
  .service-image {
    text-align: center;
  }

  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    text-align: center;
  }

  .service-image {
    flex-direction: row;
    justify-content: center;
  }

  .image-box {
    flex: 1 1 45%;
  }

}


/* 모바일 반응형 */
@media (max-width: 480px) {
     /* Impact Banner - 회색 테마 */
    .impact-banner {
        margin: 2rem 0.5rem;
        padding: 2rem 1rem;
        margin-bottom: 5rem;
    }
    .impact-banner::before {
        top: -25px;
        right: -10px;
        font-size: 4rem;
    }

.impact-banner h1 {
    font-size: 1.7rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.impact-banner p {
    font-size: 1.1rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.about-container {
    margin-top: 3rem;
}
    
.about-text h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: -1rem;
    margin-bottom: 2rem;
}
    
    
    
.content-section2 {
    padding: 2rem 0.5rem;
}
    
.content-section2 p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
    
    
.content-section {
    margin: 0;
    margin-bottom: 5rem;
    padding: 0.5rem;
}
.content-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}    
    
.service-card {
    padding: 2.0rem 0.5rem;
} 
    
    .service-card h2 {
        font-size: 1.5rem;
         line-height: 1.4;
    }
 .service-card p {
        font-size: 1rem;
         line-height: 1.6;
    }
    
.image-box img {
    width: 100%;
    height: 180px;
    margin-bottom: -1.3rem
}

    .service-card-gap {
        margin-bottom: 5rem;
    }

    /* 트렌드맵 그리드 스타일 */
.trend-grid-container {
  margin-top: -4.5rem;
  padding: 0.5rem;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
    margin-bottom: -0.8rem;
}
    .hero-buttons {
        margin-bottom: -1rem;
    }
    

/* Process Flow */
.process-flow {
    display: flex;
    
    padding: 0.5rem 0;
        margin-top: 0;
        margin-bottom: -1.0rem;
        gap: 0.4rem;
}

.process-step {
    min-width: 135px;
        max-width: 135px;
        padding: 0.5rem 0.5rem;
        margin-bottom: 0.2rem
}

.process-step .number {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.process-step .desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* 아이콘(화살표)도 간격 맞추기 */
.process-flow .arrow {
    font-size: 1.4rem;
        margin-left: -0.95rem;
        margin-right: -0.8rem
}

/* --  process -----------------  */    
    .process-timeline {
        padding: 0.5rem 0;
        margin-top: 0;
        margin-bottom: -1.0rem;
        gap: 0.4rem;
    }

    .timeline-item {
        min-width: 135px;
        max-width: 135px;
        padding: 0.5rem 0.5rem;
        margin-bottom: 0.2rem
    }
    
.timeline-number {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

    .timeline-arrow {
        font-size: 1.4rem;
        margin-left: -0.95rem;
        margin-right: -0.8rem
    }
/* --  process E-----------------  */    
    
/* Feature Grid - 4개 카드 */    
.feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.feature-card {
    padding: 0.5rem;
    min-width: 155px;
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: #f3fcc6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
}
.feature-card h4 {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
}
.feature-card p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}
  
.feature-card .service-desc {
    color: var(--light-purple);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}

  
.feature-card ul {
    list-style: none;
    padding: 0.5rem 0;
}

.feature-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: -0.6px;
}

    
    
/* Testimonial Box */
.testimonial-box {
    padding: 0.5rem;
}

.testimonial-content p {
    color: #cbd5e1;
    font-size: 1.0rem;
    line-height: 1.7;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--light-purple);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 1rem;
}

    
/* CTA Box */
.cta-box {
    padding: 2rem 1rem;
    margin: -4rem 1rem;
    margin-bottom: -2rem;

}
.cta-box h2 {
    line-height: 1.4;
}
    
.cta-box p {
    font-size: 1.0rem;
    line-height: 1.5;
}
    
   
}
