/* ─── Era / 3-pronged model tabs (Figma 2087:9595) ─── */
.section-era {
  --era-red: #cb353b;
  position: relative;
  background-color: var(--era-red);
  padding: 80px 16px;
  overflow: hidden;
}

.section-era__dots {
  position: absolute;
  width: 833px;
  height: 837px;
  max-width: none;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  color: rgba(255, 255, 255, 0.5);
}

.section-era__dots--tl {
  top: -463px;
  left: -360px;
}

.section-era__dots--ml {
  top: -260px;
  left: -360px;
}

.section-era__dots--bl {
  top: 470px;
  left: -360px;
}

.section-era__dots--tr {
  top: -423px;
  right: -285px;
}

.section-era__dots--br {
  top: 390px;
  right: -285px;
}

.section-era__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}

.section-era__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--white);
}

.section-era__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.31;
  font-weight: 400;
  margin: 0;
}

.section-era__title-accent {
  color: var(--cyan);
}

.section-era__subtitle {
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.37px;
  margin: 0;
  max-width: 720px;
}

.section-era__subtitle strong {
  color: var(--cyan);
  font-weight: 700;
}

.section-era__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.section-era__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.section-era__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 35px;
  border: 1px solid var(--white);
  border-radius: 68px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.37px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.section-era__tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.08);
}

.section-era__tab.is-active {
  background: var(--white);
  color: var(--era-red);
  border-color: var(--white);
}

.section-era__tab-caret {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 16px;
  height: 8px;
  transform: translateX(-50%);
  display: none;
}

.section-era__tab.is-active .section-era__tab-caret {
  display: block;
}

.section-era__panels {
  width: 100%;
}

.section-era__panel {
  display: none;
  background: var(--cream);
  border-radius: 8px;
  padding: 16px;
}

.section-era__panel.is-active {
  display: block;
}

.section-era__panel img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .section-era {
    padding: 48px 0;
  }

  .section-era__inner {
    padding: 0 16px;
    gap: 32px;
  }

  .section-era__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-era__tabs::-webkit-scrollbar {
    display: none;
  }

  .section-era__tab {
    flex-shrink: 0;
    font-size: 16px;
    padding: 16px 24px;
  }

  .section-era__subtitle {
    font-size: 16px;
  }
}
