.company-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 73, 0.98) 0%, rgba(6, 26, 73, 0.9) 52%, rgba(6, 26, 73, 0.62) 100%),
    url("assets/hero-btl.jpg") center 43% / cover no-repeat;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(115deg, transparent 62%, rgba(237, 28, 46, 0.22) 62.2%, transparent 62.7%);
}

.company-hero-shape {
  position: absolute;
  right: -95px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.company-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 72px;
}

.company-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.75);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.company-breadcrumb a:hover {
  color: var(--white);
}

.company-breadcrumb strong {
  color: var(--white);
  font-weight: 700;
}

.company-eyebrow {
  margin: 0 0 12px;
  color: #ffbdc3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-eyebrow.dark {
  color: var(--red);
}

.company-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.company-hero-content > p:last-child {
  max-width: 700px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.company-section {
  padding-block: 88px;
}

.company-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.company-heading h2,
.purpose-card h2,
.company-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 3.3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.company-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.company-copy > p:first-child {
  color: var(--text);
  font-weight: 600;
}

.company-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.company-highlights li {
  min-height: 120px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 26, 73, 0.07);
}

.company-highlights strong,
.company-highlights span {
  display: block;
}

.company-highlights strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
}

.company-highlights span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.purpose-section {
  background: #f4f6fa;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.purpose-card {
  position: relative;
  min-height: 380px;
  padding: 48px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.purpose-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 34px solid currentColor;
  border-radius: 50%;
  opacity: 0.045;
}

.vision-card {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy) 0%, #123a7c 100%);
}

.vision-card h2,
.vision-card > p:last-child {
  color: var(--white);
}

.mission-card {
  color: var(--navy);
  background: var(--white);
}

.purpose-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 31px;
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 9px 24px rgba(237, 28, 46, 0.28);
}

.purpose-icon svg {
  width: 27px;
  height: 27px;
}

.purpose-card h2 {
  font-size: 30px;
}

.purpose-card > p:last-child {
  margin: 22px 0 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.85;
}

.mission-card ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: mission;
}

.mission-card li {
  position: relative;
  min-height: 46px;
  margin-bottom: 15px;
  padding: 9px 0 9px 58px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  counter-increment: mission;
}

.mission-card li::before {
  content: counter(mission, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f2;
  font-size: 12px;
  font-weight: 900;
}

.policy-section {
  background: var(--white);
}

.company-heading.centered {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.company-heading.centered > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.policy-list {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.policy-list li {
  min-height: 136px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fbfcfe;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.policy-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 28, 46, 0.3);
  box-shadow: 0 15px 34px rgba(6, 26, 73, 0.08);
}

.policy-list li:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 8px);
  justify-self: center;
}

.policy-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.policy-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.certification-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(140deg, var(--navy) 0%, #0d326f 100%);
}

.company-heading.light h2,
.company-heading.light > p:last-child {
  color: var(--white);
}

.company-heading.light > p:last-child {
  opacity: 0.72;
}

.certification-grid {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.certification-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 25px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.certification-mark {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.certification-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certification-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.certification-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
}

.company-cta-section {
  padding-block: 64px;
  background: #f4f6fa;
}

.company-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 52px;
  border-radius: 15px;
  color: var(--white);
  background:
    linear-gradient(110deg, var(--navy) 0%, var(--navy) 65%, rgba(6, 26, 73, 0.83) 100%),
    url("assets/hero-btl.jpg") right center / 55% auto no-repeat;
  box-shadow: var(--shadow);
}

.company-cta h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
}

.company-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .company-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .purpose-card {
    padding: 38px;
  }

  .certification-card {
    grid-template-columns: 1fr;
  }

  .certification-mark {
    width: 90px;
    height: 90px;
  }

  .company-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .company-hero {
    min-height: 410px;
    background-position: 62% center;
  }

  .company-hero-content {
    padding-block: 53px;
  }

  .company-breadcrumb {
    margin-bottom: 34px;
    font-size: 11px;
  }

  .company-hero h1 {
    font-size: 36px;
  }

  .company-hero-content > p:last-child {
    font-size: 14px;
  }

  .company-section {
    padding-block: 62px;
  }

  .company-highlights,
  .purpose-grid,
  .policy-list,
  .certification-grid {
    grid-template-columns: 1fr;
  }

  .company-highlights li {
    min-height: 0;
  }

  .purpose-card {
    min-height: 0;
    padding: 32px 26px;
  }

  .purpose-card h2 {
    font-size: 27px;
  }

  .policy-list li,
  .policy-list li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .policy-list li {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 21px;
  }

  .policy-list span {
    width: 42px;
    height: 42px;
  }

  .certification-card {
    grid-template-columns: 86px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 25px;
  }

  .certification-mark {
    width: 82px;
    height: 82px;
  }

  .company-cta-section {
    padding-block: 42px;
  }

  .company-cta {
    gap: 28px;
    padding: 34px 25px;
  }

  .company-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .policy-list li {
    transition: none;
  }
}
