/* =========================================
   UT Utility Styles (Consolidated)
   ========================================= */
/* -----------------------------------------
   My Page / Form Styles (UT_01_xx)
   ----------------------------------------- */
.field-value-plain {
  font-size: 1rem;
  color: #111;
  padding: var(--s3) 0;
  background-color: var(--white);
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.form-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s6);
}

.grid-span-2 {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .form-row-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-span-2 {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .form-row-4 {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------------------
   Company Introduction (UT_02_01)
   ----------------------------------------- */
:root {
  --company-gradient: linear-gradient(135deg, #00A0DC 0%, #2563eb var(--full));
  --glass-bg: rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.company-hero {
  position: relative;
  background: var(--company-gradient);
  border-radius: var(--s6);
  padding: 80px var(--s10);
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  overflow: hidden;
  -webkit-box-shadow: 0 var(--s5) var(--s10) rgba(0, 160, 220, 0.2);
          box-shadow: 0 var(--s5) var(--s10) rgba(0, 160, 220, 0.2);
}

.company-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  pointer-events: none;
}

.hero-slogan {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: var(--s6);
  line-height: 1.3;
  word-break: keep-all;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.hero-description {
  font-size: 19px;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  word-break: keep-all;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
}

/* Core Values Section */
.section-title-wrap {
  text-align: center;
  margin-bottom: var(--s10);
}

.section-tag {
  display: inline-block;
  padding: 6px var(--s4);
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: var(--s3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: 60px;
}

.value-card {
  background-color: var(--white);
  padding: var(--s10) 30px;
  border-radius: var(--s5);
  text-align: center;
  border: 1px solid #f1f5f9;
  -webkit-box-shadow: var(--card-shadow);
          box-shadow: var(--card-shadow);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-color: #00A0DC;
  -webkit-box-shadow: 0 var(--s5) var(--s10) rgba(0, 160, 220, 0.1);
          box-shadow: 0 var(--s5) var(--s10) rgba(0, 160, 220, 0.1);
}

.value-icon-box {
  width: 70px;
  height: 70px;
  background-color: #f0f9ff;
  border-radius: var(--s5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto var(--s6);
  color: #00A0DC;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.value-card:hover .value-icon-box {
  background-color: #00A0DC;
  color: var(--white);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.value-title {
  font-size: var(--s5);
  font-weight: 700;
  color: var(--neutral-heavy);
  margin-bottom: var(--s3);
}

.value-text {
  font-size: 15px;
  color: var(--text-strong);
  line-height: 1.6;
}

/* Business Summary Section */
/* Customer Center Area */
@media (max-width: 1024px) {
  .value-card {
    padding: 30px 15px;
  }
  .value-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-slogan {
    font-size: 26px;
  }
  .hero-description {
    font-size: var(--s4);
  }
  .center-card-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--s5);
  }
  .map-trigger {
    width: var(--full);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* -----------------------------------------
   Privacy / Terms / Warning (UT_02_02 ~ 06)
   ----------------------------------------- */
.privacy-content {
  padding: var(--s5);
  color: #333;
  line-height: 1.6;
  min-height: 300px;
  /* Default height for shorter content */
}

.privacy-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #1B5E9E;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.privacy-content ol,
.privacy-content ul {
  padding-left: var(--s5);
  margin-bottom: var(--s5);
  font-size: 14px;
  color: #555;
  list-style-type: disc;
  /* Ensure bullets show */
}

.privacy-content li {
  margin-bottom: var(--s2);
  line-height: 1.6;
}

.sub-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: var(--s2);
  color: #333;
}

/* Privacy Info Box (Table-like structure) */
.privacy-info-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--s3);
  padding: var(--s5);
  margin-top: var(--s5);
}

.privacy-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--s2);
  font-size: 14px;
}

.privacy-info-label {
  min-width: 100px;
  font-weight: 600;
  color: #475569;
}

.privacy-info-value {
  color: var(--neutral-heavy);
}

/* Terms Table */
.table-wrap {
  overflow-x: auto;
  margin-bottom: var(--s5);
}

.terms-table {
  width: var(--full);
  border-collapse: collapse;
  font-size: 14px;
}

.terms-table th,
.terms-table td {
  border: 1px solid #e2e8f0;
  padding: 10px;
  text-align: left;
}

.terms-table th {
  background-color: #f8fafc;
  font-weight: 600;
  color: #475569;
}

/* Warning / Alert Box */
.warning-box {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: var(--s2);
  padding: var(--s5);
  margin-top: 30px;
  color: #c53030;
}

.warning-title {
  font-weight: 700;
  font-size: var(--s4);
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--s2);
}

.check-list-title {
  font-weight: 700;
  font-size: 15px;
  color: #2d3748;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f7fafc;
  border-radius: 6px;
}