/* b2b.css */

/* B2B Hero Section */
.b2b-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #210e04 38.09%, #7f5239 117.59%, #b27350 139.49%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-hero__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 40px;
  height: 680px;
  gap: 100px;
}

.b2b-hero__content {
  flex: 0 0 auto;
  max-width: 560px;
  padding: 117px 0 101px;
}

.b2b-hero__badge {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 34px;
}

.b2b-hero__title {
  margin: 0 0 16px;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  color: #ffffff;
  letter-spacing: -1px;
  word-break: keep-all;
}

.b2b-hero__desc {
  margin: 0 0 16px;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
  word-break: keep-all;
}

.b2b-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid rgba(203, 165, 118, 0.3);
  /* Integrated common style */
  color: #ffffff;
  /* Integrated common style */
  padding-top: 0;
  /* Adjusted from actions padding if necessary */
}

.b2b-hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
}

.b2b-hero__btn--primary {
  background: rgba(203, 165, 118, 0.5);
}

.b2b-hero__btn--primary:hover {
  background: rgba(203, 165, 118, 0.7);
  transform: translateY(-2px);
}

.b2b-hero__btn--secondary {
  background: rgba(203, 165, 118, 0.2);
}

.b2b-hero__btn--secondary:hover {
  background: rgba(203, 165, 118, 0.4);
}

/* Graphic Area */
.b2b-hero__graphic {
  position: relative;
  max-width: 630px;
  height: 438px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-hero__main-img {
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.1);
}

.b2b-hero__main-img img {
  width: 100%;
}

/* B2B Features Section */
.b2b-features {
  padding: 120px 0;
  background-color: #ffffff;
  scroll-margin-top: 80px;
}

.b2b-features .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__tag {
  display: inline-block;
  color: #4483f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.b2b-features .section-header__title {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  line-height: 72px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.b2b-features .section-header__desc {
  font-size: 22px;
  font-weight: 500;
  color: #6A7282;
  line-height: 30px;
  max-width: 800px;
  margin: 0 auto;
  word-break: keep-all;
}

.b2b-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}


.b2b-feature-card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px 24px;
  min-height: 380px;
  height: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.b2b-feature-card:hover {
  background-color: #ffffff;
  border-color: #eef3ff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.b2b-feature-card__icon {
  width: 48px;
  height: 48px;
  background-color: #eef3ff;
  color: #4483f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.b2b-feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.b2b-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  line-height: 25.5px;
  text-align: center;
}

.b2b-feature-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: #6a7282;
  line-height: 23.8px;
  word-break: break-all;
}

.b2b-feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2b-feature-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 19.5px;
}

.b2b-feature-card__list li svg {
  color: #4483f9;
  flex-shrink: 0;
}

/* B2B Dashboard Section */
.b2b-dashboard {
  padding: 200px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.b2b-dashboard .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header__dashboard {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  background: linear-gradient(88.56deg, #63bbff 6.85%, #97c6ff 40.07%, #4483f9 86.98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.b2b-dashboard .section-header__title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 72px;
  letter-spacing: -1px;
}

.b2b-dashboard__images {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.b2b-dashboard__image {
  border-radius: 26px;
  transition: all 0.3s ease;
}

.b2b-dashboard__image img {
  width: 100%;
  height: auto;
  display: block;
}

.b2b-dashboard__image--bottom {
  width: 1029px;
  z-index: 1;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
}

.b2b-dashboard__image--top {
  width: 1023px;
  z-index: 2;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.15);
  right: 0;
  bottom: 0;
  transform: translate(80px, 120px);
}

/* B2B Real Use Cases Section */
.b2b-real-cases {
  padding: 200px 0;
  background-color: #f4f5f8;
}

.b2b-real-cases .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.b2b-real-cases .section-header__tag {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.b2b-real-cases .section-header__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #101828;
  line-height: 45px;
  letter-spacing: -0.9px;
  margin-bottom: 28px;
}

.b2b-real-cases .section-header__desc {
  font-size: 16px;
  color: #6a7282;
  line-height: 27px;
  max-width: 600px;
  margin: 0 auto;
}

.b2b-real-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.real-case-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 380px;
  justify-content: center;
}

.real-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.real-case-card__icon {
  width: 48px;
  height: 48px;
  background-color: #eef3ff;
  border: 4px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4483f9;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.real-case-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 10px;
  line-height: 1.2;
}

.real-case-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6a7282;
  margin-bottom: 24px;
  word-break: break-all;
  text-align: left;
}

.real-case-card__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.case-tag {
  background-color: #f9fafb;
  color: #6a7282;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
}


/* B2B Automation Section (Dark Theme) */
.b2b-automation {
  padding: 175px 0;
  background-color: #101828;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.b2b-automation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: rgba(68, 131, 249, 0.1);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
}

.b2b-automation .container {
  position: relative;
  z-index: 1;
}

.b2b-automation .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.b2b-automation .section-header__tag {
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}

.b2b-automation .section-header__title {
  font-family: 'Pretendard', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.b2b-automation .section-header__desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.b2b-automation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1250px;
  margin: 0 auto;
}

.automation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.automation-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(68, 131, 249, 0.3);
  transform: translateY(-5px);
}

.automation-card__icon-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.automation-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(68, 131, 249, 0.2);
  color: #4483f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.automation-card__icon img {
  width: 20px;
  height: 20px;
}

.automation-card__text-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.automation-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.automation-status.before {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.automation-status.before .strike {
  text-decoration: line-through;
}

.automation-status.after {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.automation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(68, 131, 249, 0.15);
  color: #4483f9;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  line-height: 18px;
}

.b2b-automation__footer {
  text-align: center;
  margin-top: 100px;
}

.btn-cta {
  display: flex;
  height: 42px;
  padding: 8px 33px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
  background: #4483F9;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #3366cc;
  transform: translateY(-2px);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
}

/* =================================
 * 반응형 스타일 (Responsive)
 * ================================= */

/* Desktop (1280px) */
@media (max-width: 1280px) {
  .b2b-hero__content {
    flex: 1;
  }

  .b2b-hero__container {
    gap: 32px;
  }

  .b2b-hero__title {
    font-size: 38px;
    line-height: 1.4;
  }

  .b2b-hero__graphic {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .b2b-hero__main-img {
    width: 100%;
    height: auto;
    position: relative;
  }

  .b2b-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-dashboard__images {
    max-width: 900px;
    height: 500px;
  }

  .b2b-dashboard__image--bottom {
    width: 800px;
  }

  .b2b-dashboard__image--top {
    width: 800px;
    transform: translate(50px, 80px);
  }

  .b2b-use-cases .section-header__title {
    font-size: 32px;
    line-height: 1.4;
  }

  .b2b-use-cases .section-header__desc {
    font-size: 18px;
    line-height: 1.5;
  }

  .b2b-use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .b2b-real-cases__grid {
    gap: 30px;
    padding: 0;
  }

  .real-case-card {
    padding: 40px 20px;
  }

  .b2b-automation__grid {
    padding: 0 40px;
  }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .b2b-hero__container {
    gap: 32px;
    min-height: 990px;
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }

  .b2b-hero__content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .b2b-hero__desc {
    padding: 0;
    font-size: 16px;
  }

  .b2b-hero__graphic {
    width: 100%;
    justify-content: center;
    margin-top: 48px;
  }

  .b2b-automation__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-automation .section-header__title {
    font-size: 36px;
  }

  .b2b-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile (768px) */
@media (max-width: 768px) {
  .b2b-hero {
    padding: 0;
  }

  .b2b-hero__container {
    padding: 80px 40px;
  }

  .b2b-hero__title {
    font-size: 32px;
  }

  .b2b-hero__actions {
    flex-direction: column;
  }

  .b2b-hero__graphic {
    margin-top: 0;
  }

  .b2b-hero__btn {
    width: 100%;
    height: 45px;
  }

  .b2b-hero__merits {
    flex-wrap: wrap;
    gap: 16px;
  }

  .b2b-features__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .b2b-dashboard {
    padding: 80px 0;
  }

  .b2b-dashboard .section-header__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .b2b-dashboard__images {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .b2b-dashboard__image {
    position: static;
    width: 100% !important;
    transform: none !important;
  }

  .b2b-use-cases {
    padding: 80px 0;
  }

  .b2b-use-cases .section-header__title {
    font-size: 26px;
  }

  .b2b-use-cases__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
  }

  .use-case-card {
    padding: 40px 20px;
    min-height: auto;
  }

  .b2b-real-cases {
    padding: 80px 0;
  }

  .b2b-real-cases .section-header__title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .b2b-real-cases .section-header {
    margin-bottom: 50px;
  }

  .b2b-real-cases .section-header__tag {
    font-size: 18px;
  }

  .b2b-real-cases__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .real-case-card {
    padding: 40px 24px;
    min-height: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .b2b-automation {
    padding: 80px 0;
  }

  .b2b-automation__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .b2b-automation .section-header__title {
    font-size: 26px;
  }

  .b2b-automation .section-header__desc {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .b2b-automation .section-header {
    margin-bottom: 50px;
  }

  .b2b-automation__footer {
    margin-top: 80px;
  }

  .b2b-reviews__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }


  .b2b-features {
    padding: 80px 0;
  }

  .b2b-features .section-header {
    margin-bottom: 50px;
  }

  .b2b-features .section-header__title {
    font-size: 26px;
    line-height: 1.5;
  }

  .b2b-features .section-header__desc {
    font-size: 16px;
  }

  .section-header__dashboard {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .b2b-dashboard .section-header {
    margin-bottom: 60px;
  }

  .b2b-dashboard__images {
    padding: 0;
  }

  .real-case-card__title {
    font-size: 22px;
  }


  .automation-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}