/* ============================================
   KnightPay - Company Page Specific Styles
   ============================================ */

/* MISSION */
.mission {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  text-align: center;
}
.mission-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.mission h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}
.mission p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 2.1;
}

/* INFO SECTION */
.info-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.info-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 56px 56px;
  box-shadow: 0 16px 40px rgba(58, 95, 143, 0.08);
}
.info-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-section-title .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
}
table.info-table {
  width: 100%;
  border-collapse: collapse;
}
table.info-table th,
table.info-table td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--gray-border);
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
}
table.info-table th {
  width: 30%;
  font-weight: 600;
  color: var(--navy-dark);
  font-family: 'Noto Serif JP', serif;
}
table.info-table td {
  color: var(--text-primary);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.service-item {
  background: var(--bg-cream);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.service-item h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.service-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CONTACT BOX */
.contact-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.contact-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
}
.contact-box-inner {
  position: relative;
  z-index: 2;
}
.contact-box .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.contact-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-box-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.contact-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-item .key {
  font-size: 11px;
  color: var(--gold-bright);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.contact-item .val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
}
.contact-item .val a { color: var(--white); }
.contact-item .hours-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.contact-hours {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .info-card {
    padding: 36px 24px;
  }
  table.info-table th,
  table.info-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  table.info-table th {
    border-bottom: none;
    padding-top: 20px;
  }
  table.info-table td {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 40px 24px;
  }
  .contact-row {
    flex-direction: column;
    gap: 24px;
  }
}
