/* ==========================================================================
   Component: Mission Cards
   ========================================================================== */

.sg-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.sg-mission__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--sp-4);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-300) var(--ease-smooth),
    box-shadow var(--duration-300) var(--ease-smooth);
}

.sg-mission__item:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

/* ── Number ── */
.sg-mission__number {
  flex-shrink: 0;
  font-family: var(--font-body, "VM_ExtraBold");
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-content-primary);
  opacity: 0.4;
}

/* ── Content ── */
.sg-mission__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
}

.sg-mission__title {
  font-family: var(--font-h4, "VM_Bold");
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-content-heading);
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

.sg-mission__text {
  font-family: var(--font-body, "VM_Regular");
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
  padding: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .sg-mission {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .sg-mission__item {
    padding: var(--sp-5);
  }

  .sg-mission__number {
    font-size: 2rem;
  }
}

.sty-img-mission {
  border: 1px solid #ddd;
  border-radius: 1rem;
}

/* ==========================================================================
   Component: Achievements
   ========================================================================== */

.sg-achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--sp-4);
  overflow: hidden;
}

.sg-achievements__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  transition: background var(--duration-200) var(--ease-smooth);
}

.sg-achievements__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: var(--sp-4);
  bottom: var(--sp-4);
  left: 0;
  width: 1px;
  background: var(--color-border-light);
}

.sg-achievements__item:hover {
  background: var(--color-bg-section);
}

/* ── Icon ── */
.sg-achievements__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--sp-2);
  background: var(--color-bg-section);
}

.sg-achievements__icon i {
  font-size: 1.125rem;
  color: var(--color-content-primary);
}

/* ── Content ── */
.sg-achievements__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-top: var(--sp-1);
}

.sg-achievements__number {
  font-family: var(--font-body, "VM_ExtraBold");
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-content-heading);
}

.sg-achievements__label {
  font-family: var(--font-body, "VM_SemiBold");
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-content-heading);
}

.sg-achievements__sublabel {
  font-family: var(--font-body, "VM_Regular");
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sg-achievements {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-achievements__item:nth-child(2)::after {
    display: none;
  }

  .sg-achievements__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border-light);
  }
}

@media (max-width: 640px) {
  .sg-achievements {
    grid-template-columns: 1fr;
  }

  .sg-achievements__item {
    border-bottom: 1px solid var(--color-border-light);
  }

  .sg-achievements__item:last-child {
    border-bottom: none;
  }

  .sg-achievements__item::after {
    display: none;
  }
}

/* ==========================================================================
   Component: Quote — Editorial
   ========================================================================== */

.sg-quote {
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--sp-4);
  position: relative;
}

.sg-quote blockquote:before {
  display: none;
}

/* ── Badge outside the card (icon + title) ── */
.sg-quote__badge {
  position: absolute;
  top: -1.375rem;
  right: var(--sp-6);
  width: auto;
  height: 2.75rem;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--rounded-full);
  padding: 0 var(--sp-5) 0 var(--sp-3);
  z-index: 2;
}

.sg-quote__badge i {
  font-size: 1rem;
  color: var(--color-content-primary);
}

.sg-quote__badge-label {
  font-family: var(--font-body, "VM_SemiBold");
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-content-heading);
  white-space: nowrap;
}

/* ── Blockquote ── */
.sg-quote blockquote {
  margin: 0;
  padding: var(--sp-12) var(--sp-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.sg-quote blockquote p {
  margin: 0;
  padding: 0;
  padding-right: var(--sp-8);
  font-family: var(--font-body, "VM_Regular");
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-content-text);
  position: relative;
}

/* ── Small quote marks inside paragraphs ── */
.sg-quote__mark {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--sp-1);
  background: var(--color-bg-section);
}

.sg-quote__mark i {
  font-size: 0.625rem;
  color: var(--color-content-primary);
  opacity: 0.5;
}

/* ── Caption ── */
.sg-quote figcaption {
  margin: 0;
  padding: var(--sp-5) var(--sp-8) var(--sp-6);
  font-family: var(--font-body, "VM_SemiBold");
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-content-heading);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-right: var(--sp-8);
  border-top: 1px solid var(--color-border-light);
  margin-top: var(--sp-9);
}

.sg-quote figcaption::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--color-content-secondary);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .sg-quote__badge {
    top: -1rem;
    right: var(--sp-4);
    height: 2.25rem;
    padding: 0 var(--sp-4) 0 var(--sp-2);
  }

  .sg-quote__badge i {
    font-size: 0.875rem;
  }

  .sg-quote__badge-label {
    font-size: 0.75rem;
  }

  .sg-quote blockquote {
    padding: var(--sp-6) var(--sp-5) 0;
  }

  .sg-quote blockquote p {
    font-size: 0.9375rem;
    padding-right: var(--sp-6);
  }

  .sg-quote__mark {
    width: 1.25rem;
    height: 1.25rem;
  }

  .sg-quote__mark i {
    font-size: 0.5rem;
  }

  .sg-quote figcaption {
    padding: var(--sp-4) var(--sp-5);
    padding-right: var(--sp-6);
  }
}

.sg-features__cta {
    margin-top: var(--sp-7);
}

.sg-highlights_cta {
  margin-top: var(--sp-14);
}