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

.tfc-how-section {
  padding: 56px 18px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 34%, rgba(65, 87, 255, .06), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #071126;
}

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

.tfc-how-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.tfc-how-kicker {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #1265ff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.tfc-how-kicker span {
  width: 44px;
  height: 1px;
  background: rgba(18, 101, 255, .28);
}

.tfc-how-header h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 950;
}

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

.tfc-how-header p {
  max-width: 560px;
  margin: 18px auto 0;
  color: #5e6b80;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.4;
  font-weight: 750;
}

.tfc-how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tfc-how-steps::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 27px;
  height: 2px;
  background-image: linear-gradient(90deg, #1265ff 35%, rgba(18,101,255,0) 0);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  opacity: .55;
}

.tfc-how-card {
  position: relative;
  min-height: 255px;
  padding: 52px 24px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(223, 232, 245, .95);
  box-shadow: 0 18px 48px rgba(31, 70, 120, .08);
  text-align: center;
}

.tfc-how-number {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.9),
    0 12px 24px rgba(30, 64, 175, .14);
}

.tfc-how-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.tfc-how-icon svg,
.tfc-how-pill svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tfc-how-icon svg {
  width: 34px;
  height: 34px;
}

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

.tfc-how-card p {
  max-width: 270px;
  margin: 12px auto 0;
  color: #5e6b80;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
}

.tfc-how-pill {
  width: fit-content;
  margin: 18px auto 0;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.tfc-how-pill svg {
  width: 18px;
  height: 18px;
}

.tfc-how-card--blue .tfc-how-number {
  background: linear-gradient(135deg, #1265ff, #255cff);
}

.tfc-how-card--blue .tfc-how-icon {
  background: #edf4ff;
  color: #1265ff;
}

.tfc-how-card--blue .tfc-how-pill {
  background: #edf4ff;
  color: #1265ff;
}

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

.tfc-how-card--purple .tfc-how-icon {
  background: #f4ecff;
  color: #6b19ff;
}

.tfc-how-card--purple .tfc-how-pill {
  background: #f4ecff;
  color: #6b19ff;
}

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

.tfc-how-card--green .tfc-how-icon {
  background: #eaf9f2;
  color: #18a961;
}

.tfc-how-card--green .tfc-how-pill {
  background: #eaf9f2;
  color: #18a961;
}

@media (max-width: 900px) {
  .tfc-how-section {
    padding: 44px 14px;
  }

  .tfc-how-inner {
    width: min(720px, 100%);
  }

  .tfc-how-header {
    margin-bottom: 28px;
  }

  .tfc-how-kicker {
    margin-bottom: 12px;
    font-size: 12px;
    gap: 12px;
  }

  .tfc-how-kicker span {
    width: 34px;
  }

  .tfc-how-header h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .tfc-how-header p {
    margin-top: 14px;
    font-size: 16px;
  }

  .tfc-how-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .tfc-how-steps::before {
    left: 17%;
    right: 17%;
    top: 20px;
    height: 2px;
    background-size: 9px 2px;
    opacity: .45;
  }

  .tfc-how-card {
    min-height: 0;
    padding: 34px 8px 12px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(31, 70, 120, .07);
  }

  .tfc-how-number {
    top: -18px;
    width: 38px;
    height: 38px;
    font-size: 18px;
    box-shadow:
      0 0 0 6px rgba(255,255,255,.9),
      0 8px 18px rgba(30, 64, 175, .12);
  }

  .tfc-how-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .tfc-how-icon svg {
    width: 23px;
    height: 23px;
  }

  .tfc-how-card h3 {
    font-size: 14px;
    letter-spacing: -.04em;
  }

  .tfc-how-card p {
    display: none;
  }

  .tfc-how-pill {
    margin-top: 8px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1.1;
    white-space: normal;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .tfc-how-section {
    padding: 38px 10px;
  }

  .tfc-how-header {
    margin-bottom: 26px;
  }

  .tfc-how-kicker {
    font-size: 11px;
    letter-spacing: .22em;
  }

  .tfc-how-kicker span {
    width: 28px;
  }

  .tfc-how-header h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .tfc-how-header p {
    max-width: 310px;
    font-size: 14px;
  }

  .tfc-how-steps {
    gap: 8px;
  }

  .tfc-how-card {
    padding: 30px 6px 10px;
    border-radius: 16px;
  }

  .tfc-how-number {
    top: -16px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .tfc-how-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .tfc-how-icon svg {
    width: 20px;
    height: 20px;
  }

  .tfc-how-card h3 {
    font-size: 12px;
    line-height: 1.05;
  }

  .tfc-how-pill {
    padding: 5px 6px;
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .tfc-how-card h3 {
    font-size: 11px;
  }

  .tfc-how-pill {
    font-size: 8.5px;
  }
}

/* BENEFIT CARD - SEPARATE WHITE SECTION */
.tfc-ai-benefit-card {
  width: min(100%, 920px);
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 22px 26px;
  margin: 0 auto 8px;
  border-radius: 26px;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(18,101,255,.12);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
  color: #071126 !important;
}

.tfc-ai-benefit {
  display: grid !important;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 24px;
  position: relative;
}

.tfc-ai-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(18,101,255,.14);
}

.tfc-ai-benefit span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: #1265ff;
}

.tfc-ai-benefit strong {
  display: block;
  color: #071126 !important;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 950;
}

.tfc-ai-benefit small {
  display: block;
  margin-top: 5px;
  color: #5e6b80 !important;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 680px) {
  .tfc-ai-benefit-card {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px 8px;
    border-radius: 22px;
  }

  .tfc-ai-benefit {
    display: flex !important;
    flex-direction: column;
    text-align: center;
    gap: 7px;
    padding: 0 6px;
  }

  .tfc-ai-benefit span {
    width: 38px;
    height: 38px;
  }

  .tfc-ai-benefit strong {
    font-size: 12px;
  }

  .tfc-ai-benefit small {
    font-size: 11px;
  }
}