/* 섹션별 배경 스타일 */
.solution-section {
  background-image: url("../img/solutions-section-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-section {
  background-color: #ffffff;
}

.advantages-section {
  position: relative;
  width: 100%;
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  gap: 160px;
  z-index: 2;
}

.advantages-section .main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.advantages-section .main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 13, 13, 0.93);
  z-index: 1;
}

.cta-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2;
  height: 280px;
}

.cta-section .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cta-section .main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    102.46deg,
    rgba(0, 52, 56, 0.8) 20.76%,
    rgba(42, 180, 207, 0.8) 94.22%
  );
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

/* 콘텐츠 영역 */
.solution {
  overflow: hidden;
  position: relative;
}

.solution-wrap {
  position: relative;
}

/* 탭영역 */
.solution-tabs {
  display: flex;
  width: 100%;
  height: 80px;
  align-items: flex-start;
  justify-content: center;
  gap: 120px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 0.5px solid #aeadd3e3;
  z-index: 100;
  transition: all 0.3s ease;
}

.solution-tabs.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.tab-active,
.tab-item {
  display: flex;
  width: 120px;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tab-active {
  border-bottom: 4px solid #2ab4cf;
}

.tab-item {
  border-bottom: 4px solid transparent;
}

.tab-text {
  position: relative;
  width: fit-content;
  font-family: "Pretendard";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-active .tab-text {
  color: #111111;
}

.tab-item .tab-text {
  color: #777777;
}

/* 호버 효과 */
.tab-item:hover {
  /* border-bottom: 4px solid rgba(0, 115, 230, 0.3); */
}

.tab-item:hover .tab-text {
  /* color: #0073e6; */
}

/* 클릭 효과 */
.tab-item:active {
  border-bottom: 4px solid #2ab4cf;
}

.tab-item:active .tab-text {
  color: #111111;
}

/* 솔루션 요약 영역 */
.summary-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.header-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #000;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.solution-header {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 160px auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

.solution-header-inner {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.solution-info {
  position: relative;
  width: 50%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
}

.header-product {
  position: absolute;
  width: 45%;
  height: auto;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /* object-fit: contain; */
  z-index: 2;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  width: 634px;
  height: 354px;
}
.header-product.header-product-wireless {
  height: 332px;
  border: none;
}

.header-product-logo {
  position: relative;
  width: 64px;
  height: auto;
  z-index: 1;
}

.header-icons {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 96px;
  gap: 8px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  height: 420px;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  width: 100%;
}

.summary-title {
  font-family: "Pretendard";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.01em;
}

.summary-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.summary-subtitle {
  font-family: "Pretendard";
  font-size: 3rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.01em;
}
.summary-subtitle.logo-img img {
  vertical-align: text-top;
  padding-left: 32px;
}

.header-gradient-text {
  font-family: "Pretendard";
  font-size: 3.111rem;
  font-weight: 800;
  background: linear-gradient(to right, #0073e6, #ccf54b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.product-description {
  font-family: "Pretendard";
  font-weight: 400;
  color: #b0b0b0;
  font-size: 1.111rem;
  line-height: 130%;
  width: 48%;
}

.inquiry-buttons {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
}

.general-inquiry-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 40px;
  position: relative;
  border-radius: 40px;
  border: 2px solid;
  border-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.quote-inquiry-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px;
  position: relative;
  border-radius: 40px;
  /* border: 2px solid; */
  background: linear-gradient(2.81deg, #205b8c -67.06%, #25c2e2 68.02%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.general-inquiry-wrapper:hover,
.quote-inquiry-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.general-inquiry-wrapper::before,
.quote-inquiry-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.general-inquiry-wrapper:hover::before,
.quote-inquiry-wrapper:hover::before {
  left: 100%;
}

/* CTA 섹션 버튼 스타일 오버라이드 */
.cta-section .general-inquiry-wrapper {
  border-color: #ffffff;
  background-color: transparent;
}

.cta-section .quote-inquiry-wrapper {
  background: #111111;
  border-color: #111111;
}

.inquiry-text {
  font-family: "Pretendard";
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  text-align: center;
}

/* 스탯 섹션 */
.stats-section {
  background-color: #f0f6fb;
  padding: 60px 0;
}

.solution-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 200px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.stat-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.stat-label {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Pretendard";
  font-weight: 600;
  color: #0073e6;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px;
  white-space: nowrap;
}

.stat-value {
  position: relative;
  width: fit-content;
  font-family: "Pretendard";
  font-weight: 700;
  color: #111111;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}

.stat-divider {
  position: relative;
  align-self: stretch;
  width: 1px;
}

/* 핵심 기능 영역 */
.features-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item-left {
  display: flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  height: 360px;
  padding: 32px 40px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 0px 35.9px rgba(32, 34, 41, 0.1),
    0px 0px 4px rgba(32, 34, 41, 0.04);
}

.feature-content-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-right: 48px;
}

.feature-title {
  font-family: "Pretendard";
  font-size: 1.111rem;
  font-weight: 500;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.feature-subtitle {
  font-family: "Pretendard";
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.feature-description {
  font-family: "Pretendard";
  font-size: 1.111rem;
  font-weight: 400;
  line-height: 140%;
  color: #4d4d4d;
}

.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  /* border : 1px solid rgb(255, 255, 255); */
  /* box-shadow: inset 0 0 0 2px #fff;  */
  /* outline: 2px solid rgb(255, 255, 255); */
  /* outline-offset: -2px; */
}
.sdn-section .feature-image {
  border: 1px solid #f5f5f5;
}

.feature-item-right {
  display: flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  height: 360px;
  padding: 32px 40px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 0px 35.9px rgba(32, 34, 41, 0.1),
    0px 0px 4px rgba(32, 34, 41, 0.04);
}

.feature-content-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 24px;
  padding-left: 48px;
  width: 100%;
}
.feature-content-right .feature-title {
  text-align: right;
}

.feature-content-right .feature-description {
  text-align: right;
}

.feature-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 특장점 섹션 */
.advantages-section .section-title {
  color: #26a4bc;
}

.advantages-section .section-subtitle {
  color: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  width: 100%;
  justify-content: center;
  justify-items: center;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.advantage-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  background: linear-gradient(140deg, #0073e6 25%, #ccf54b 110%);
  border-radius: 9999px;
}

.advantage-title {
  font-family: "Pretendard";
  font-size: 1.111rem;
  font-weight: 600;
  line-height: 1.333rem;
  letter-spacing: 0;
  color: #ffffff;
  word-break: keep-all;
  text-align: center;
}

.advantage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px;
  gap: 8px;
  position: relative;
  width: 100%;
  background: rgba(107, 107, 108, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(13.25px);
  -webkit-backdrop-filter: blur(13.25px);
  height: 100%;
}

.advantage-description {
  font-family: "Pretendard";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.444rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  word-break: keep-all;
  text-align: center;
}

/* 도입효과 섹션 */
.effects-section {
  padding: 160px 0;
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  width: 100%;
  justify-content: center;
  justify-items: center;
}

.effect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13.25px);
  -webkit-backdrop-filter: blur(13.25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 20px;
  gap: 16px;
}

.effect-description {
  color: rgba(255, 255, 255);
  font-family: "Pretendard";
  font-size: 1.111rem;
  font-weight: 400;
  line-height: 1.333rem;
  word-break: keep-all;
  margin: 0;
}

.effects-section .effect-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.effect-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* CTA 섹션 */

.cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.cta-text {
  position: relative;
  text-shadow: 0px 1px 4px #00000040;
  font-family: "Pretendard";
  font-weight: 700;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 100%;
}

/* Solutions page styles */

/* Use standardized container */
.solutions-container {
  width: var(--container-width-desktop);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

.solutions-grid {
  display: grid;
  gap: var(--grid-gutter);
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}

/* Convert specific grids to use standard grid system */
.features-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gutter);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gutter);
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

:root {
  --bwfff: rgba(255, 255, 255, 1);
}

/* 문의 팝업 스타일 */
.inquiry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.inquiry-popup.active {
  display: flex;
}

.popup-content {
  background: #f0f6fb;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: popupFadeIn 0.3s ease-out;
  max-height: 90%;
  overflow: auto;
}

.popup-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.contact-form {
  margin-top: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  /* padding: 12px; */
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 2px solid #0073e6 !important;
  padding: 9px 19px;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-select {
  position: relative;
}

.form-select::after {
  content: "⌵";
  display: block;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 55%;
  right: 10px;
  width: 20px;
  height: 15px;
  text-align: center;
  color: #666;
}

.form-select select {
  -webkit-appearance: none; /* Safari, Chrome */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* 표준 */
  position: relative;
  padding: 12px 20px;
  font-size: 16px;
  color: #777;
  background: #fff;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #0056b3;
}

@media (max-width: 767px) {
  .section-container,
  .features-section,
  .effects-section,
  .cta-section {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
  }
  /* 기존 폰트/스페이싱/레이아웃 스타일은 그대로 유지 */

  .solution-header,
  .effects-grid {
    gap: 0.5rem !important;
    margin: 80px auto !important;
    padding: 0 16px !important;
  }
  .section-title {
    font-family: "Pretendard" !important;
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }

  .subtitle {
    font-family: "Pretendard" !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    width: 100% !important;
    text-align: left !important;
  }

  .section-subtitle,
  .summary-subtitle,
  .business-title,
  .cta-text {
    font-family: "Pretendard" !important;
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  .product-description,
  .feature-description,
  .advantage-description,
  .effect-description {
    font-family: "Pretendard" !important;
    font-size: 0.889rem !important;
    line-height: 1.4 !important;
    width: 100% !important;
  }

  .summary-subtitle.logo-img {
    white-space: normal !important;
  }

  .summary-subtitle.logo-img img {
    width: 140px;
    height: auto;
    padding-left: 4px;
    vertical-align: bottom;
  }

  .solution-description + .cta-buttons {
    margin-top: 1rem;
  }

  .solution-tabs {
    height: 48px !important;
    gap: 16px !important;
    margin-bottom: 0 !important;
  }
  .tab-active,
  .tab-item {
    font-family: "Pretendard" !important;
    width: auto !important;
    font-size: 0.95rem !important;
    padding: 0 12px !important;
  }

  .tab-text {
    font-family: "Pretendard" !important;
    font-size: 0.95rem !important;
  }

  .features-section,
  .effects-section {
    padding: 80px 16px 0 16px !important;
    margin-bottom: 80px !important;
  }

  .advantages-section {
    padding: 80px 16px 0px 16px !important;
    gap: 0px !important;
  }

  .cta-section {
    margin-bottom: 0 !important;
    padding: 0 16px !important;
  }

  .features-list,
  .effects-grid {
    margin-top: 0 !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .feature-item-left,
  .feature-item-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    padding: 24px 16px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    background: #fff !important;
    gap: 0 !important;
    /* box-shadow: 0px 0px 20px rgba(32, 34, 41, 0.07),
      0px 0px 2px rgba(32, 34, 41, 0.03) !important; */
  }
  .feature-content-left,
  .feature-content-right {
    order: 1 !important;
    padding: 0 !important;
    gap: 12px !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  .feature-image {
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    margin-top: 12px !important;
    border-radius: 12px !important;
    outline: none !important;
  }

  .header-icons.small {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: auto !important;
  }
  .header-icons.small .certifi-img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    max-height: 64px;
  }
  .header-product {
    display: none !important;
  }
  .solution-info {
    gap: 0px;
  }

  .inquiry-buttons {
    margin-top: 40px;
  }

  .solution-stats {
    padding: 0 0 !important;
    gap: 0 !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .stat-item {
    min-width: 0 !important;
    flex: 1 1 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 2px !important;
  }
  .stat-label {
    font-family: "Pretendard" !important;
    font-size: 0.85rem !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }
  .stat-value {
    font-family: "Pretendard" !important;
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .stat-divider {
    height: 32px !important;
    width: 1px !important;
    margin: 0 4px !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
  .stats-section {
    padding: 24px 0 !important;
    margin: 0 !important;
    background: #f0f6fb !important;
  }
  .summary-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .feature-title {
    font-family: "Pretendard" !important;
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
  }
  .feature-subtitle {
    font-family: "Pretendard" !important;
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }
  .feature-description br {
    display: none !important;
  }
  .advantages-grid,
  .effects-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .advantages-grid {
    margin-top: 0 !important;
    margin-bottom: 80px !important;
  }

  .effect-item {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    box-shadow: 0px 0px 12px rgba(32, 34, 41, 0.06) !important;
  }

  .effect-icon {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    margin-bottom: 8px !important;
  }

  @media (max-width: 767px) {
    .effect-description br {
      display: none !important;
    }
  }

  .summary-subtitle,
  .header-gradient-text {
    display: block !important;
    white-space: pre-line !important;
    word-break: keep-all !important;
  }

  .cta-text {
    display: block !important;
    white-space: pre-line !important;
    word-break: keep-all !important;
  }

  .cta-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 360px) {
  .advantages-grid,
  .effects-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 430px) {
  .advantages-grid,
  .effects-grid {
    grid-template-columns: 1fr !important;
  }
  .form-select::after {
    content: "⌵";
    display: block;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    top: 55%;
    right: 10px;
    width: 15px;
    height: 15px;
  }
}

/* 375px 이하에서만 .mobile-br 줄바꿈 */
@media (max-width: 375px) {
  .mobile-br {
    display: inline;
  }
  .mobile-br br {
    display: block;
  }
}
@media (min-width: 376px) {
  .mobile-br {
    display: none !important;
  }
}
