
/* ============================================
   TECHNOLOGY SECTION - Figma Design Implementation
   ============================================ */

/* Technology Section */
.section.technology {
  background-color: #0b0c1b;
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Technology Section Wrapper */
.technology-section-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  position: relative;
}

/* Background Decorations */
.technology-background-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.tech-bg-decoration {
  position: absolute;
  opacity: 0.7;
}

.tech-bg-1 {
  left: 907px;
  top: 40px;
  width: 501.775px;
  height: 972.596px;
  mix-blend-mode: overlay;
  transform: rotate(180deg);
}

.tech-bg-2 {
  left: 907px;
  top: 251.42px;
  width: 501.775px;
  height: 922.093px;
  transform: rotate(180deg) scaleY(-1);
}

/* Technology Title Section */
.technology-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.technology-title-section .section-tag-boarder-wrapper {
  border-radius: 8.2px;
  width: auto;
}

/* Technology Heading Text */
.technology-heading-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -2.24px;
  margin: 0;
}

.technology-heading-text .title-color-gradient {
  background: linear-gradient(180.04deg, rgba(101, 120, 254, 1) 69.826%, rgba(178, 186, 241, 1) 111.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Technology Description Text */
.technology-description-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6ff;
  margin: 0;
}

/* Technology Content Wrapper */
.technology-content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Technology Cards Grid */
.technology-cards-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  min-width: 0;
}

/* Technology Card */
.technology-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Technology Card Icon Wrapper */
.technology-card-icon-wrapper {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.technology-card-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

/* Technology Card Content */
.technology-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Technology Card Title */
.technology-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

/* Technology Card Description */
.technology-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6ff;
  margin: 0;
}

/* Technology Image Wrapper */
.technology-image-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  max-height: 440px;
  width: 472.318px;
  height: 472.318px;
  position: relative;
}

.technology-image-container {
  width: 440px;
  height: 440px;
  transform: rotate(4.38deg);
  position: relative;
}

.technology-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .section.technology {
    padding-top: 180px;
    padding-bottom: 100px;
  }
  
  .technology-section-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    gap: 60px;
  }
  
  .technology-title-section {
    gap: 20px;
  }
  
  .technology-heading-text {
    font-size: 56px;
  }
  
  .technology-content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  /* 이미지가 먼저 나오도록 order 조정 */
  .technology-image-wrapper {
    order: -1;
    width: 302.036px;
    height: 302.036px;
    max-width: 302.036px;
    max-height: 302.036px;
    flex-shrink: 0;
    align-self: flex-start;
  }
  
  .technology-image-container {
    width: 302.036px;
    height: 302.036px;
    transform: rotate(4.38deg);
  }
  
  .technology-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* 카드 그리드 */
  .technology-cards-grid {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 10px;
  }
  
  .technology-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    min-width: 280px;
    width: 100%;
  }
  
  .technology-card-icon-wrapper {
    width: 54px;
    height: 54px;
  }
  
  .technology-card-icon {
    width: 54px;
    height: 54px;
  }
  
  .technology-card-content {
    gap: 14px;
  }
}

@media screen and (max-width: 767px) {
  .section-tag-text {
    font-size: 12px;
  }
} 

@media screen and (max-width: 767px) {
  .section.technology {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .technology-section-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }
  
  .technology-heading-text {
    font-size: 24px;
    letter-spacing: -1.28px;
  }
  
  .technology-description-text {
    font-size: 16px;
  }

  .technology-image-wrapper {
    order: -1;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .technology-image-container {
    width: 160px;
    height: 160px;
  }
  
  .technology-content-wrapper {
    gap: 20px;
  }
  
  .technology-cards-grid {
    gap: 20px;
  }
  
  .technology-card-title {
    font-size: 16px;
  }
  
  .technology-card-description {
    font-size: 14px;
  }
  
  .technology-image-wrapper {
    max-width: 300px;
  }
}

/* ============================================
   PREVIEW SECTION - Figma Design Implementation
   ============================================ */

/* Preview Section */
.section.preview {
  background-color: transparent;

  background-image: url('../images_figma/solution-feature-background.png');
  background-size: 811px 973px;
  background-repeat: no-repeat;
  background-position: right -258px top -202px;

  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Preview Section Wrapper */
.preview-section-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
}

/* Preview Content Wrapper */
.preview-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}

/* Preview Title Section */
.preview-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.preview-title-section .section-tag-boarder-wrapper {
  border-radius: 8.2px;
  width: auto;
}

/* Preview Heading Text */
.preview-heading-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -2.24px;
  margin: 0;
  white-space: pre-wrap;
}

/* Preview Description Text */
.preview-description-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6ff;
  margin: 0;
}

/* Preview Main Content */
.preview-main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

/* Preview Feature List */
.preview-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 287px;
  flex-shrink: 0;
  padding: 10px;
}

/* Preview Feature Item */
.preview-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  cursor: pointer;
  transition: color 0.3s ease;
}

.preview-feature-item.preview-feature-active {
  font-weight: 700;
}

.preview-feature-item:not(.preview-feature-active) {
  font-weight: 500;
  color: #7f8283;
}

.preview-feature-number {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  width: 40px;
  flex-shrink: 0;
  white-space: pre-wrap;
}

.preview-feature-active .preview-feature-number {
  color: #ffffff;
  font-weight: 700;
}

.preview-feature-item:not(.preview-feature-active) .preview-feature-number {
  color: #7f8283;
  font-weight: 500;
}

.preview-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  flex: 1;
}

.preview-feature-active .preview-feature-text {
  color: #ffffff;
  font-weight: 700;
}

.preview-feature-item:not(.preview-feature-active) .preview-feature-text {
  color: #7f8283;
  font-weight: 500;
}

.preview-feature-item:last-child .preview-feature-text {
  font-weight: 400;
}

/* Preview Image Section */
.preview-image-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  min-width: 0;
}

/* Preview Image Wrapper */
.preview-image-wrapper {
  width: 100%;
  aspect-ratio: 913 / 510;
  position: relative;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}

/* Preview Image Caption */
.preview-image-caption {
  font-family: 'Manrope', 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .section.preview {
    background-image: none;

    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .preview-section-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .preview-content-wrapper {
    gap: 60px;
  }
  
  .preview-heading-text {
    font-size: 42px;
  }
  
  .preview-main-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .preview-feature-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .preview-image-section {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .section.preview {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .preview-section-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .preview-content-wrapper {
    gap: 40px;
  }
  
  .preview-heading-text {
    font-size: 18px;
    letter-spacing: -1.28px;
  }
  
  .preview-description-text {
    font-size: 16px;
  }
  
  .preview-main-content {
    gap: 30px;
  }
  
  .preview-feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .preview-feature-number,
  .preview-feature-text {
    font-size: 14px;
  }
  
  .preview-image-caption {
    font-size: 14px;
  }
}

/* ============================================
   SOLUTIONS SECTION - Figma Design Implementation
   ============================================ */

/* Solutions Section */
.section.solutions {
  background-color: var(--black-color);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.solutions-title-section .section-tag-boarder-wrapper {
  /* 테두리 반경 - Figma: rounded-[8.2px] */
  border-radius: 8.2px;
  width: 115px;
}

/* Solutions Section Wrapper */
.solutions-section-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
}

/* Solutions Title Section */
.solutions-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

/* Solutions Heading Text */
.solutions-heading-text {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white-color);
  text-align: center;
  letter-spacing: -1.44px;
  margin: 0;
  max-width: 100%;
}

/* Solutions Cards Wrapper */
.solutions-cards-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

/* Solution Card */
.solution-card {
  background: linear-gradient(180deg, #0A0A1A 0%, #1E1E40 100%);
  border: 1px solid #253db4;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

/* Solution Card Content */
.solution-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: left;
}

/* Solution Card Title */
.solution-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white-color);
  margin: 0;
}

/* Solution Card Description */
.solution-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  margin: 0;
}

/* Solution Card Image Wrapper */
.solution-card-image-wrapper {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 20px 0;
  position: relative;
}

.solution-card-image {
  width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: center;
}

.solution-card-image2 {
  width: 240px;
  height: 240px;
  object-fit: contain;
  object-position: center;
}

/* Solution Card Button */
.solution-card-button {
  background: radial-gradient(70.66% 70.66% at 50.29% 100%, #9EA9FF 0%, #475CFD 100%);
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 138px;
  height: 48px;
  justify-content: center;
}

.solution-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 92, 253, 0.4);
}

.solution-button-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white-color);
  white-space: nowrap;
}

.solution-button-arrow {
  width: 20px;
  height: 20px;
}

/* 반응형 디자인 */
@media screen and (max-width: 991px) {
  .section.solutions {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .solutions-section-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    gap: 40px;
  }
  
  .solutions-heading-text {
    font-size: 28px;
  }
  
  .solutions-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    align-items: stretch;
    justify-items: center;
    width: 100%;
  }
  
  .solution-card {
    width: 360px;
  }
  
  .solution-card-image-wrapper {
    max-width: 100%;
  }
  
  .solution-card-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
  
  .solution-card-image2 {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1;
  }
}

@media screen and (max-width: 767px) {
  .solutions-title-section .section-tag-boarder-wrapper {
    /* 테두리 반경 - Figma: rounded-[8.2px] */
    border-radius: 8.2px;
    width: 106px;
  }

  .section.solutions {
    padding-top: 60px;
    padding-bottom: 60px;
  }
    
  .solutions-section-wrapper {
    gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .solutions-heading-text {
    font-size: 16px;
  }
  
  .solutions-cards-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    padding: 0 20px;
  }
  
  .solution-card {
    max-width: 100%;
    min-height: 520px;
    width: 100%;
    height: auto;
  }

  .solution-card-title {
    font-size: 16px;
  }

  .solution-card-description {
    font-size: 14px;
  }

  .solution-card-image {
    max-width: 240px;
    max-height: 240px;
  }

  .solution-card-image2 {
    max-width: 200px;
    max-height: 200px;
  }
}

/* ============================================
   WHY CHOOSE US SECTION - Figma Design Implementation
   ============================================ */

/* Why Choose Us Section */
.section.why-choose-us {
  background-color: #0b0c1b;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Why Choose Us Wrapper */
.why-choose-us-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  position: relative;
}

/* Background Image */
.why-choose-us-background {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.why-choose-us-bg-image {
  width: 100%;
  opacity: 0.8;
  padding: 0 40px;
}

/* Content */
.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Title Section */
.why-choose-us-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.why-choose-us-title-section .section-tag-boarder-wrapper {
  border-radius: 8.2px;
  width: auto;
}

/* Heading Text */
.why-choose-us-heading-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -1.92px;
  margin: 0;
  text-align: center;
}

.why-choose-us-heading-text .title-color {
  background: linear-gradient(180.071deg, rgba(101, 120, 254, 1) 69.826%, rgba(178, 186, 241, 1) 111.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description Text */
.why-choose-us-description-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

/* Features Grid */
.why-choose-us-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* Feature Card */
.why-choose-us-feature-card {
  background-color: #0e1023;
  border: 1px solid #6578fe;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 514px;
  flex: 1;
}

/* Feature Header */
.why-choose-us-feature-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

/* Feature Number Wrapper */
.why-choose-us-feature-number-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 100%, rgba(158, 169, 255, 1) 0%, rgba(114, 131, 254, 1) 50%, rgba(71, 92, 253, 1) 100%);
  flex-shrink: 0;
}

.why-choose-us-feature-number {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}

/* Feature Title */
.why-choose-us-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

/* Feature Image Wrapper */
.why-choose-us-feature-image-wrapper {
  width: 100%;
  height: 173px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.why-choose-us-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Feature Description */
.why-choose-us-feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

/* 반응형 디자인 */
@media screen and (max-width: 991px) {
  .section.why-choose-us {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-choose-us-wrapper {
    padding-left: 100px;
    padding-right: 100px;
    gap: 60px;
  }

  /* Background Image */
  .why-choose-us-background {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    width: 140%;
  }

  .why-choose-us-bg-image {
    width: 140%;
    opacity: 0.8;
    padding: 0 40px;
  }

  .why-choose-us-content {
    gap: 100px;
  }

  .why-choose-us-heading-text {
    font-size: 48px;
  }

  .why-choose-us-description-text {
    margin-top: 8px;
  }

  .why-choose-us-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .why-choose-us-feature-card {
    min-width: auto;
  }

  .why-choose-us-feature-image-wrapper {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .section.why-choose-us {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .why-choose-us-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }

  /* Background Image */
  .why-choose-us-background {
    position: absolute;
    top: -140px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    width: 280%;
  }

  .why-choose-us-bg-image {
    width: 280%;
    opacity: 0.8;
    padding: 0;
  }

  .why-choose-us-content {
    gap: 100px;
  }

  .why-choose-us-heading-text {
    font-size: 20px;
    letter-spacing: -1.12px;
  }

  .why-choose-us-description-text {
    font-size: 14px;
  }

  .why-choose-us-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-us-feature-card {
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 20px;
  }

  .why-choose-us-feature-number {
    font-size: 16px;
  }

  .why-choose-us-feature-title {
    font-size: 16px;
  }

  .why-choose-us-feature-description {
    font-size: 14px;
  }
}

/* ============================================
   PRICING SECTION - Figma Design Implementation
   ============================================ */

/* Pricing Section */
.section.pricing {
  background-color: transparent;

  background-image: url('../images_figma/solution-pricing-background.png');
  background-size: 740px 970px;
  background-repeat: no-repeat;
  background-position: 305px -281px;

  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Pricing Wrapper */
.pricing-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  position: relative;
}

/* Background Decoration */
.pricing-background-decoration {
  position: absolute;
  left: 305px;
  top: -281.32px;
  width: 735.704px;
  height: 1125.832px;
  transform: rotate(210deg) scaleY(-1);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Title Section */
.pricing-title-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.pricing-title-section .section-tag-boarder-wrapper {
  border-radius: 8.2px;
  width: auto;
}

/* Heading Text */
.pricing-heading-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -1.44px;
  margin: 0;
  text-align: center;
}

/* Pricing Cards Wrapper */
.pricing-cards-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Pricing Card */
.pricing-card {
  background-color: #0e1023;
  border: 1px solid #1c2c7b;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  min-height: 420px;
}

/* Pricing Card Header */
.pricing-card-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Pricing Card Icon Wrapper */
.pricing-card-icon-wrapper {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: radial-gradient(circle at 50% 100%, rgba(158, 169, 255, 1) 0%, rgba(114, 131, 254, 1) 50%, rgba(71, 92, 253, 1) 100%);
}

.pricing-card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Pricing Card Title Wrapper */
.pricing-card-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  height: 100%;
}

.pricing-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6ff;
  margin-top: auto;
}

.pricing-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: auto;
}

/* Pricing Card Divider */
.pricing-card-divider {
  height: 0;
  width: 100%;
  border-top: 1px solid #1c2c7b;
  flex-shrink: 0;
}

/* Pricing Card Features */
.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex: 1;
  overflow-y: auto;
}

.pricing-card-features-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* Pricing Card Features List */
.pricing-card-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Pricing Card Feature Item */
.pricing-card-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

/* Pricing Card Feature Icon */
.pricing-card-feature-icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 999px;
  background-color: #0b0c1b;
  border: 1px solid #1c2c7b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card-feature-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* Pricing Card Feature Text */
.pricing-card-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #f4f6ff;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.pricing-card-feature-text-bold {
  font-weight: 700;
}

/* 반응형 디자인 */
@media screen and (max-width: 991px) {
  .section.pricing {
    background-position: 405px -281px;

    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pricing-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    gap: 40px;
  }

  .pricing-heading-text {
    font-size: 36px;
  }

  .pricing-cards-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .pricing-card {
    height: auto;
    width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .section.pricing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pricing-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }

  .pricing-heading-text {
    font-size: 18px;
    letter-spacing: -0.96px;
  }

  .pricing-cards-wrapper {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-card {
    padding: 20px;
    width: 100%;
    min-height: auto;
  }

  .pricing-card-features-title {
    font-size: 16px;
  }

  .pricing-card-feature-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .footer + .company-info-section {
      margin-top: 58.46px;
  }
}

@media screen and (max-width: 767px) {
  .footer + .company-info-section {
      margin-top: 18px;
  }
}
