.tfc-features-section,
.tfc-features-section * {
  box-sizing: border-box;
}

.tfc-features-section {
  padding: 96px 18px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 20%, rgba(107, 25, 255, .09), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(18, 101, 255, .08), transparent 40%),
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 42%, #ffffff 100%);
  color: #071126;
  overflow: hidden;
}

.tfc-features-inner {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.tfc-features-header {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.tfc-features-kicker {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #4938ff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.tfc-features-kicker span {
  width: 54px;
  height: 1px;
  background: rgba(73, 56, 255, .26);
}

.tfc-features-header h2 {
  margin: 0;
  color: #071126;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 950;
}

.tfc-features-header h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #1265ff, #4938ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.tfc-features-header p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #5e6b80;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.4;
  font-weight: 700;
}

.tfc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.tfc-feature-card {
  min-width: 0;
  padding: 28px 26px 0;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(223, 232, 245, .95);
  box-shadow: 0 24px 70px rgba(31, 70, 120, .10);
  overflow: hidden;
}

.tfc-feature-top {
  min-height: 150px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.tfc-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, .20);
}

.tfc-feature-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tfc-feature-card h3 {
  margin: 2px 0 0;
  color: #071126;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 950;
}

.tfc-feature-card p {
  margin: 12px 0 0;
  color: #5e6b80;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
}

.tfc-feature-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, .18));
}

.tfc-feature-card--blue .tfc-feature-icon {
  background: linear-gradient(135deg, #1265ff, #245cff);
}

.tfc-feature-card--purple .tfc-feature-icon {
  background: linear-gradient(135deg, #6b19ff, #4938ff);
}

.tfc-feature-card--green .tfc-feature-icon {
  background: linear-gradient(135deg, #14b86a, #0ca55a);
}

.tfc-feature-card--violet .tfc-feature-icon {
  background: linear-gradient(135deg, #7c3cff, #4938ff);
}

.tfc-feature-proof {
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid #dfe8f5;
  color: #5e6b80;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 750;
  box-shadow: 0 16px 36px rgba(31,70,120,.08);
}

.tfc-feature-proof svg {
  width: 21px;
  height: 21px;
  display: block;
  color: #4938ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .tfc-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .tfc-features-section {
    padding: 64px 12px;
  }

  .tfc-features-header {
    margin-bottom: 30px;
  }

  .tfc-features-kicker {
    font-size: 12px;
    gap: 12px;
  }

  .tfc-features-kicker span {
    width: 32px;
  }

  .tfc-features-header h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .tfc-features-header p {
    font-size: 16px;
  }

  .tfc-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tfc-feature-card {
    padding: 22px 18px 0;
    border-radius: 28px;
  }

  .tfc-feature-top {
    min-height: auto;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .tfc-feature-icon {
    width: 44px;
    height: 44px;
  }

  .tfc-feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .tfc-feature-card h3 {
    font-size: 21px;
  }

  .tfc-feature-card p {
    font-size: 14px;
  }

  .tfc-feature-card img {
    margin-top: 18px;
  }

  .tfc-feature-proof {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
  }
}