/* ═══════════════════════════════════════════
   Company / About Us Page Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════
   1. HERO SECTION
   ══════════════════════════════ */
.company-hero {
  position: relative;
  background: #ffffff;
  padding: 48px 0 56px;
  overflow: hidden;
}

.company-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.company-hero__content {
  position: relative;
  z-index: 2;
}

.company-hero__title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.company-hero p {
  color: #64748B;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.company-hero__image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.company-hero__image img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}

/* ══════════════════════════════
   2. CORE PRINCIPLES
   ══════════════════════════════ */
.company-principles {
  padding: 56px 0;
  background: #F8F9FA;
}

.company-principles__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.company-principles__header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.company-principles__header p {
  font-size: 1.1rem;
  color: #64748B;
  line-height: 1.7;
}

.company-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-principles__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.company-principles__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.company-principles__icon {
  width: 50px;
  height: 50px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.company-principles__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.company-principles__card p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════
   3. FINAL CTA
   ══════════════════════════════ */
.company-cta {
  padding: 56px 0;
  background: #fff;
}

.company-cta__card {
  text-align: center;
  background: #F8FAF9;
  border: 1px solid #E8F5E9;
  border-radius: 20px;
  border-bottom: 8px solid #0A882E;
  padding: 80px 40px;
  width: 100%;
  margin: 0 auto;
}

.company-cta__card h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.company-cta__card p {
  font-size: 1.1rem;
  color: #64748B;
  margin-bottom: 40px;
}

.company-cta__btn {
  display: inline-block;
  padding: 18px 40px;
  background: #0A882E;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}

.company-cta__btn:hover {
  background: #086a23;
  transform: translateY(-2px);
  color: #fff;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .company-hero__inner {
    display: flex;
    flex-direction: column;
  }
  .company-hero__content {
    display: contents;
  }
  .company-hero__title { order: 1; text-align: center; }
  .company-hero p { order: 2; margin: 0 auto 32px auto; text-align: center; }
  .company-hero__image {
    order: 3;
    justify-content: center;
    margin: 0 auto 32px auto;
  }
  .company-principles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .company-hero {
    padding: 60px 0 80px;
  }
  .company-hero__title {
    font-size: 2.5rem;
  }
  .company-principles__grid {
    grid-template-columns: 1fr;
  }
  .company-principles__header h2 {
    font-size: 2.2rem;
  }
  .company-cta__card {
    padding: 60px 24px;
  }
  .company-cta__card h2 {
    font-size: 2.2rem;
  }
  .company-cta__btn {
    width: 100%;
    padding: 16px 20px;
  }
}
