/* =====================================================
   Company Page — redesigned
===================================================== */

/* Hero */
.company-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1a3a6b 60%, #2563a8 100%);
  border-radius: 12px;
  padding: 52px 48px 48px;
  color: #fff;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.company-hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.company-hero::after {
  content: '';
  position: absolute;
  right: 60px; bottom: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.company-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.company-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}
.company-hero-sub {
  font-size: 15px;
  opacity: .85;
  margin: 0;
  max-width: 560px;
  line-height: 1.7;
}
@media(max-width:767px){
  .company-hero { padding: 36px 24px 32px; border-radius: 8px; }
  .company-hero h1 { font-size: 24px; }
}

/* Info cards grid */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media(max-width:767px){ .company-grid { grid-template-columns: 1fr; gap: 14px; } }

.company-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.company-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.company-card-icon.blue  { background: #eff6ff; color: #1e91d0; }
.company-card-icon.navy  { background: #eef2ff; color: #1a3a6b; }
.company-card-icon.green { background: #f0fdf4; color: #16a34a; }
.company-card-icon.orange{ background: #fff7ed; color: #ea580c; }
.company-card-icon.pink  { background: #fdf2f8; color: #9333ea; }
.company-card-icon.teal  { background: #f0fdfa; color: #0d9488; }

.company-card-body {}
.company-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}
.company-card-value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
}
.company-card-value a { color: #1e91d0; text-decoration: none; }
.company-card-value a:hover { text-decoration: underline; }
.company-card-value small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  margin-top: 3px;
}

/* Full-width card */
.company-card-full {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.company-card-full-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.company-card-full-header .company-card-icon { width: 40px; height: 40px; font-size: 18px; }
.company-card-full-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
@media(max-width:767px){
  .company-card-full { padding: 20px 18px; }
}

/* Office photos */
.company-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.company-photos img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
@media(max-width:767px){
  .company-photos { grid-template-columns: 1fr 1fr; }
  .company-photos img { height: 120px; }
}
.company-photo-caption {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Map */
.company-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
}
.company-map-wrap iframe { display: block; }

/* SNS */
.company-sns-list {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 0; padding: 0; list-style: none;
}
.company-sns-list li a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.company-sns-list li a:hover { border-color: #e1306c; background: #fff0f6; }
.company-sns-list li a .fa-instagram { color: #e1306c; font-size: 18px; }

/* CTA strip */
.company-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.company-cta-text h3 { font-size: 18px; font-weight: 700; color: #1a3a6b; margin: 0 0 4px; }
.company-cta-text p  { font-size: 14px; color: #475569; margin: 0; }
.company-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a3a6b; color: #fff;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.company-cta-btn:hover { background: #2563a8; color: #fff; text-decoration: none; }
@media(max-width:767px){
  .company-cta { padding: 20px 18px; }
  .company-cta-btn { width: 100%; justify-content: center; }
}
