.ft-section {
  padding: 2rem 1.5rem;
  background: transparent;
  font-family: 'Open Sans', sans-serif;
}
.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ft-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.ft-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f2fc2;
  margin: 0 0 0.75rem;
}
.ft-title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #111111;
  margin: 0 0 1rem;
}
.ft-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  line-height: 1.7;
  margin: 0;
}
.ft-tabs {
  display: flex;
  gap: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 3rem;
  background: #f9fafb;
}
.ft-tab {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #363636;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 8px 28px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.ft-tab:hover {
  color: #ffffff;
}
.ft-tab--active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 1px #e5e7eb;
}
.ft-panel {
  display: none;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.ft-panel--active {
  display: grid;
}
.ft-panel__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ft-panel__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 26px;
  font-weight: 500;
  color: #111111;
  margin: 0;
  line-height: 1.5;
}
.ft-panel__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  line-height: 1.7;
  margin: 0;
}
.ft-panel__body p {
  margin: 0;
}
.ft-bullets {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ft-bullet {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363636;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.ft-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2f2fc2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.ft-panel__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}
.ft-panel__image img {
  width: 100%;
  height: auto;
  display: block;
}
.ft-panel__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f0f2f8;
}
@media (max-width: 768px) {
  .ft-title {
    font-size: 26px;
  }
  @media (max-width: 768px) {
  .ft-tabs {
    flex-wrap: wrap;
    width: 100%;
    gap: 4px;
  }
  .ft-tab {
    flex: 1;
    text-align: center;
    padding: 6px 12px;
    font-size: 13px;
  }
  .ft-panel--active {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .ft-panel__image {
    order: -1;
  }
}