/* =================================
 * Section: Support Hero
 * ================================= */
.support-hero {
  position: relative;
  padding: 167px 0 245px;
  background: linear-gradient(180deg, #F0F5FF 0%, #FFF 100%);
  text-align: center;
  overflow: hidden;
  height: 680px;
}

.support-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.support-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(142, 81, 255, 0.1);
  color: #7f22fe;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.support-hero__title {
  font-size: 48px;
  font-weight: 600;
  color: #101828;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}

.support-hero__desc {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5565;
  word-break: keep-all;
  margin: 0;
}

.support-search {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.support-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.support-search__icon {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.support-search__input {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 56px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font-size: 15px;
  color: #101828;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.support-search__input:focus {
  outline: none;
  border-color: #4483f9;
  box-shadow: 0 8px 16px rgba(68, 131, 249, 0.12);
}

.support-search__input::placeholder {
  color: #99a1af;
}

.support-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.support-tags__label {
  font-size: 12px;
  font-weight: 700;
  color: #99a1af;
}

.support-tags__items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.support-tags__item {
  display: flex;
  height: 28px;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  color: #6A7282;
  text-align: center;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  border-radius: 16777200px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.support-tags__item:hover {
  border-color: #4483f9;
  color: #4483f9;
  background-color: #f0f7ff;
  transform: translateY(-1px);
}

/* =================================
 * Section: Support Channels
 * ================================= */
.support-channels {
  padding: 180px 0;
  background-color: #fff;
}

.support-channels__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-channels__tag {
  color: #4483f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.support-channels__title {
  font-size: 36px;
  font-weight: 600;
  color: #101828;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.support-channels__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 800px;
  margin: 0 auto;
}

.channel-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #e5e7eb;
}

.channel-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.channel-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-card__icon--blue {
  background: #eff6ff;
  color: #4483f9;
}

.channel-card__icon--orange {
  background: #fff7ed;
  color: #f97316;
}

.channel-card__icon--purple {
  background: #f5f3ff;
  color: #7f22fe;
}

.channel-card__icon--green {
  background: #ecfdf5;
  color: #10b981;
}

.channel-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.channel-card__badge--green {
  background: #f0fdf4;
  color: #00a63e;
}

.channel-card__badge--orange {
  background: #fff7ed;
  color: #e17100;
}

.channel-card__badge--purple {
  background: #f5f3ff;
  color: #7f22fe;
}

.channel-card__title {
  color: #101828;
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
}

.channel-card__desc {
  color: #6a7282;
  word-break: keep-all;
  width: 65%;
  color: #6A7282;
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
}

.channel-card__info {
  margin-top: auto;
}

.info-value {
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.info-label {
  display: block;
  font-size: 12px;
  color: #99a1af;
  margin-top: 15px;
}

.channel-card__link {
  display: flex;
  align-items: centeㄱr;
  gap: 6px;
  color: #4483f9;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
  line-height: 1.5;
  justify-content: center;
}

.channel-card__link svg {
  transition: transform 0.2s ease;
}

.channel-card__link:hover {
  color: #235bf5;
}

.channel-card__link:hover svg {
  transform: translateX(4px);
}

.support-channels__footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.operation-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #99a1af;
  font-size: 13px;
}

/* CTA */
.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 33px;
  background: #4483f9;
  color: #fff;
  border-radius: 50px;
  font-size: 16.6px;
  font-weight: 700;
  transition: all 0.3s ease;
}

/* =================================
 * Section: Support Cody
 * ================================= */
.support-cody {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  overflow: hidden;
}

.support-cody__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Left: Visual */
.support-cody__visual {
  position: relative;
}

.cody-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.cody-main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  display: block;
}

.cody-stat {
  position: absolute;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.cody-stat--tl {
  top: -20px;
  left: -20px;
}

.cody-stat--br {
  bottom: -20px;
  right: -20px;
}

.cody-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cody-stat__icon--blue {
  background: #eff6ff;
  color: #4483f9;
}

.cody-stat__icon--green {
  background: #ecfdf5;
  color: #10b981;
}

.cody-stat__info {
  display: flex;
  flex-direction: column;
}

.cody-stat__value {
  font-size: 17px;
  font-weight: 900;
  color: #101828;
  line-height: 1.2;
}

.cody-stat__label {
  font-size: 11px;
  font-weight: 700;
  color: #99a1af;
}

/* Right: Content */
.cody-badge {
  display: inline-flex;
  align-items: center;
  background: #eef3ff;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cody-badge span {
  font-size: 12px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.02em;
}

.cody-title {
  font-size: 36px;
  font-weight: 900;
  color: #101828;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.cody-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 48px;
}

.cody-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}

.cody-feature {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: #eef3ff;
  color: #4483f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 12px;
  line-height: 1.5;
  color: #6a7282;
  word-break: keep-all;
}

/* Media Queries for Cody Section */

/* =================================
 * Section: Support Categories
 * ================================= */
.support-categories {
  padding: 100px 0;
  background-color: #ffffff;
}

.support-categories__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-categories__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-categories__title {
  font-size: 36px;
  font-weight: 900;
  color: #101828;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.support-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: block;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #e5e7eb;
}

.category-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.category-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category Icon Colors */
.category-card__icon--blue {
  background-color: #eff6ff;
  color: #4483f9;
}

.category-card__icon--green {
  background-color: #ecfdf5;
  color: #10b981;
}

.category-card__icon--purple {
  background-color: #f5f3ff;
  color: #7c3aed;
}

.category-card__icon--yellow {
  background-color: #fffbeb;
  color: #f59e0b;
}

.category-card__icon--rose {
  background-color: #fff1f2;
  color: #f43f5e;
}

.category-card__icon--cyan {
  background-color: #ecfeff;
  color: #0891b2;
}

.category-card__icon--indigo {
  background-color: #eef2ff;
  color: #4f46e5;
}

.category-card__icon--gray {
  background-color: #f3f4f6;
  color: #4b5563;
}

.category-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.category-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #99a1af;
  margin-bottom: 20px;
  min-height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card__count {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4483f9;
}


/* =================================
 * Section: Support Guides
 * ================================= */
.support-guides {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.support-guides__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-guides__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-guides__title {
  font-size: 36px;
  font-weight: 900;
  color: #101828;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.support-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #e5e7eb;
}

.guide-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.guide-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.guide-tag--blue {
  background: #eff6ff;
  color: #155dfc;
}

.guide-tag--yellow {
  background: #fffbeb;
  color: #e17100;
}

.guide-tag--purple {
  background: #f5f3ff;
  color: #7f22fe;
}

.guide-tag--rose {
  background: #fff1f2;
  color: #ec003f;
}

.guide-tag--cyan {
  background: #ecfeff;
  color: #0092b8;
}

.guide-tag--green {
  background: #ecfdf5;
  color: #10b981;
}

.guide-tag--popular {
  background: rgba(68, 131, 249, 0.1);
  color: #4483f9;
}

.guide-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.4;
}

.guide-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6a7282;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #99a1af;
}

.guide-card__meta svg {
  color: #99a1af;
}




/* =================================
 * Section: Support News
 * ================================= */
.support-news {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.support-news__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-news__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-news__title {
  font-size: 36px;
  font-weight: 600;
  color: #101828;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.news-list {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  text-decoration: none;
  border-bottom: 1px solid #f9fafb;
  transition: all 0.2s;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: #f9fafb;
}

.news-item__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.news-badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  flex-shrink: 0;
  display: flex;
  height: 20px;
  padding: 2px 10px;
  align-items: flex-start;
  line-height: 1.7;
}

.news-badge--notice {
  background: #eff6ff;
  color: #155dfc;
}

.news-badge--update {
  background: #ecfdf5;
  color: #096;
}

.news-badge--event {
  background: #fffbeb;
  color: #e17100;
}

.news-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #1e2939;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-new {
  background: #fb2c36;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.news-item__date {
  font-size: 13px;
  color: #99a1af;
}

.news-item__arrow {
  color: #99a1af;
  opacity: 0.5;
  transition: all 0.2s;
}

.news-item:hover .news-item__arrow {
  opacity: 1;
  transform: translateX(2px);
}


/* =================================
 * Section: Support Inquiry
 * ================================= */
.support-inquiry {
  padding: 120px 0;
  background: #fff;
}

.support-inquiry__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-inquiry__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #4483f9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-inquiry__title {
  font-size: 36px;
  font-weight: 900;
  color: #101828;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.support-inquiry__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #6a7282;
}

.inquiry-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: span 2;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  color: #1e2939;
  transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #99a1af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4483f9;
  box-shadow: 0 0 0 4px rgba(68, 131, 249, 0.1);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2399A1AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.form-group select {
  appearance: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.required-notice {
  font-size: 12px;
  color: #99a1af;
}

.required-notice span {
  color: #ff6467;
}


/* =================================
 * Section: Support Final CTA
 * ================================= */
.support-final-cta {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  min-height: 310px;

  width: 920px;
  height: 310px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  align-items: flex-start;
}

/* Primary Card (Blue) */
.cta-card--primary {
  background: linear-gradient(180deg, #4483F9 0%, #2563EB 100%);
}

.cta-card--primary::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(64px);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-card--primary .cta-card__icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-card__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-card--primary .cta-card__title {
  color: #fff;
}

.cta-card__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-card--primary .cta-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.cta-card__button {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s;
  display: flex;
  width: 164px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 30px;
  line-height: 1.4;
}

.cta-card--primary .cta-card__button {
  background: #fff;
  color: #4483f9;
}

.cta-card--primary .cta-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Secondary Card (White) */
.cta-card--secondary {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.cta-card--secondary .cta-card__icon-box {
  background: #f5f3ff;
  color: #7c3aed;
}

.cta-card--secondary .cta-card__title {
  color: #101828;
}

.cta-card--secondary .cta-card__desc {
  color: #6a7282;
}

.cta-card--secondary .cta-card__button {
  background: #101828;
  color: #fff;
}

.cta-card--secondary .cta-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.2);
}



/* Consultation Section */
.b2b-consult {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f0f5ff 100%);
}

.b2b-consult .container {
  max-width: 1200px;
  padding: 0 40px;
}

.b2b-consult__wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}

.b2b-consult__info {
  max-width: 480px;
  width: 100%;
}

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

.b2b-consult__info .section-header__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 24px;
  text-align: left;
}

.b2b-consult__info .section-header__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5565;
  margin-bottom: 40px;
  text-align: left;
}

.b2b-consult__benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  background-color: #eef3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4483f9;
}

.benefit-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-item__text strong {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.benefit-item__text span {
  font-size: 13px;
  color: #6a7282;
}

.b2b-consult__form {
  width: 520px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #364153;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 14px;
  color: #101828;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4483f9;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(68, 131, 249, 0.1);
}

.form-group textarea {
  height: 90px;
  resize: none;
}

.btn-submit {
  width: 100%;
  height: 56px;
  background-color: #4483f9;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: #3366cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(68, 131, 249, 0.3);
}

.form-note {
  font-size: 12px;
  color: #99a1af;
  text-align: center;
  margin-top: 16px;
}


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

/* Desktop (1280px) */
@media (max-width: 1280px) {
  .support-hero__title {
    font-size: 38px;
    line-height: 1.4;
  }

  .section-summary__title {
    font-size: 32px;
    line-height: 48px;
  }

  .benefit-card {
    width: 320px;
    padding: 40px 20px;
  }

}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .support-hero {
    min-height: 990px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .support-cody__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .support-cody__visual {
    order: 2;
  }

  .cody-image-wrapper {
    max-width: 400px;
  }

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

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

  .section-summary__cards {
    flex-wrap: wrap;
    gap: 30px;
  }

  .b2b-consult__wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
  }

  .b2b-consult__info .section-header__title,
  .b2b-consult__info .section-header__desc {
    text-align: center;
  }

  .b2b-consult__benefits {
    align-items: flex-start;
    padding: 0 25px;
  }

  .benefit-item {
    text-align: left;
  }

  .b2b-consult__form {
    width: 100%;
    max-width: 520px;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .support-hero {
    padding: 80px 20px 60px;
    min-height: 600px;
  }

  .support-hero__title {
    font-size: 28px;
  }

  .support-hero__desc {
    font-size: 15px;
  }

  .support-search__input {
    height: 54px;
    font-size: 14px;
    padding-left: 48px;
  }

  .support-search__icon {
    left: 16px;
  }

  .support-search__icon svg {
    width: 20px;
    height: 20px;
  }

  .support-tags {
    flex-direction: column;
    gap: 12px;
  }

  .support-cody {
    padding: 80px 0;
  }

  .cody-title {
    font-size: 28px;
  }

  .cody-stat {
    padding: 12px 16px;
  }

  .cody-stat__value {
    font-size: 15px;
  }

  .cody-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .support-news {
    padding: 80px 0;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }

  .news-item__meta {
    width: 100%;
    justify-content: space-between;
  }

  .support-inquiry {
    padding: 80px 0;
  }

  .inquiry-form-wrapper {
    padding: 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

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

  .form-group--full {
    grid-column: span 1;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .support-final-cta {
    padding: 80px 0;
  }

  .cta-card {
    padding: 32px;
  }

  .section-summary__title {
    font-size: 24px;
    line-height: 32px;
  }

  .section-summary__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .benefit-card {
    width: 95%;
    height: auto;
    min-height: 340px;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

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

  .b2b-consult__form {
    padding: 24px;
  }

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


  .support-channels__title {
    font-size: 26px;
  }

  .support-channels__tag {
    font-size: 16px;
  }

  .support-channels {
    padding: 80px 0;
  }

  .support-channels__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .b2b-consult__info .section-header__tag,
  .support-news__tag {
    font-size: 16px;
  }

  .support-news__title {
    font-size: 26px;
  }

  .support-news__header {
    margin-bottom: 50px;
  }

  .cta-card {
    width: 100%;
  }

  .form-group label {
    text-align: left;
    padding-left: 5px;
  }
}